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.
我有一个名为“Food”的 SQL 数据库和一个名为“Fruit”的表。使用 phpMyAdmin 我正在尝试从看起来像...的文本文件中导入项目列表。
Apple Banana Orange Pear Grape Peach Raisin
我该如何做到这一点,或者我最好将此列表转换为 CSV 并以这种方式尝试?
如果您有权访问 mysql 命令行,则可以使用以下命令:
LOAD DATA LOCAL INFILE '/path/myfile.txt' INTO TABLE mytable;
http://dev.mysql.com/doc/refman/5.0/en/loading-tables.html