如何将 .csv 数据转换为 mysql?
Possible Duplicate:
Tool for importing CSV files into MySQL database?
A guy at work gave me a .csv file with thousands of records in it. There's about 5 columns (out of 20) that I would love to get inserted into a mysql database.
Any idea how I might go about that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
加载数据文件
。 CSV 文档中的示例是:如果 CSV 数据中没有标题行,则应删除
IGNORE 1 LINES
子句。另请注意,文件中数据的顺序应与表中列的顺序匹配。如果没有,您将需要像这样指定顺序:
Using
LOAD DATA INFILE
. The example in the docs for CSV is:You should remove the
IGNORE 1 LINES
clause if there is no header row in the CSV data.Also, note that the order of the data in the file should match the order of the columns in the table. If they do not, you will need to specify the order like this:
使用 LOAD DATA 或 BULK INSERT 命令
use the LOAD DATA or BULK INSERT command