使用方式如下:
代码如下:mysql>load data local infile “D:/ab.txt” into table mytbl(name,age);
使用上述的命令就可以将D:/ab.txt文件的内容导入到表mytbl中,其中name和age是表mytbl的字段,对应ab.txt文件中每行的数据。如果编译安装mysql时没有指定–enable-local-infile,那么在使用上述命令时会报如下错误:
代码如下:ERROR 1148 (42000): The used
问题是这样的:表persons有两个字段: id和name文本文档persons.txt中内容(其中每行字段之间用tab分割):1 Bush2 Carter3 Bush在mysql命令行下使用 load data local infile “persons.txt” into table persons 导入数据到persons表中。导入后查看persons表的数据,与persons.txt的内容一致。但是使用语句select distinct name from person