当前位置:数据库 > MySQL >>

mysql把一个数据库中的数据复制到另一个数据库中的表 2个表结构相同

答案:1。表结构相同的表,且在同一数据库(如,table1,table2) Sql :insert into table1 select * from table2 (完全复制) insert into table1 select distinct * from table2(不复制重复纪录) insert into table1 select top 5 * from table2 (前五条纪录) 2。 不在同一数据库中(如,db1 table1,db2 table2) sql: insert into db1..table1 select * from db2..table2 (完全复制) insert into db1..table1 select distinct * from db2table2(不复制重复纪录) insert into tdb1..able1 select top 5 * from db2table2 (前五条纪录)
其他:ice千 正解!

上一个:mysql,通过phpmyadmin导出数据库时,怎样使导出的数据库文件最小。
下一个:可以把mysql导出的.sql格式的数据库导入到db2等的数据库中吗?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,