数据库把数据写入文件及读取文件并插入表中
数据库把数据写入文件及读取文件并插入表中
#把查询数据导出到文件 select * into outfile 'd:\sql.txt' from phone; #读取文件,并把数据插入到表中 load data infile 'd:\sql.txt' into table phone;
数据库把数据写入文件及读取文件并插入表中
#把查询数据导出到文件 select * into outfile 'd:\sql.txt' from phone; #读取文件,并把数据插入到表中 load data infile 'd:\sql.txt' into table phone;