最新消息: 新版网站上线了!!!

mysql 从已有表中导入数据

 1. 将数据从一个表中导入到另一个表中, 参考见1)

            方式一:(注意后面的select部分不能用括号)

            insert into table2 (field1, field2, ...) select field1, field2, ... from table1 where ....

            

            如table1(id, name, age, gender, address),  table2 (id, name, age)

            将表1中的数据导入到表2中

            insert into table2 (id, name, age) select id, name, age from table1;

            当然也可以使用where条件将部分数据导入

            insert into table2 (id, name, age) select id, name, age from table1 where id > 100;

 

            方式二:

            select field1, field2, ... into table2 from table1 where ...

            这种方式MySQL不支持

2. 将查询数据写入文件(参考资料见2,3)

            select field1, field2, ... into outfile 'filepath';

            如stu(id, name, age, gender, address),将其中的内容写入stu.txt

            select id, name, age into outfile 'd:/stu.txt' ->将查询结果写入d盘根目录下stu.txt中

             注意:由于这种方式不支持覆写文件,所以如果存在相应的文件会提示该文件已存在,需要删除该文件再试,即要写入的文件必须不存在。

.....

转载请注明:谷谷点程序 » mysql 从已有表中导入数据