美文网首页
mysql导入csv格式文件

mysql导入csv格式文件

作者: 大雷阵雨 | 来源:发表于2018-12-30 20:00 被阅读4次
  load data infile 'F:/MySqlData/test1.csv' --CSV文件存放路径
  into table student--要将数据导入的表名
  fields terminated by ',' optionally enclosed by '"' escaped by '"'
  lines terminated by '\r\n';

相关文章

网友评论

      本文标题:mysql导入csv格式文件

      本文链接:https://www.haomeiwen.com/subject/cxqblqtx.html