mysql 导入excel文件数据到数据库
Posted 刘奇云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 导入excel文件数据到数据库相关的知识,希望对你有一定的参考价值。
load data local infile ‘C:/Users/Administrator/Documents/gaunai2.csv‘
into table newtable (c1,c2)
fields terminated by ‘,‘
load data infile "d:guanaicheliang.csv"
into table newtable(c1,c2)
fields terminated by ‘,‘
lines terminated by ‘
‘
以上是关于mysql 导入excel文件数据到数据库的主要内容,如果未能解决你的问题,请参考以下文章