Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 csv 格式的 Geolite 城市数据库导入到我的 phpmyadmin 中,但它只导入它的第一行,然后说“网页不可用”。
您可以使用以下命令直接在 mysql 中加载 CSV:
load data local infile 'csvFileName.csv' into table tblUniq fields terminated by ',' enclosed by '"' lines terminated by '\n' (field1, field2, field3)