db1爲原數據庫,db2爲要導出到的數據庫,fromtable 是要導出的表名mysql
若是但願將db1的數據導入到db2中,有以下方法:sql
1.方法一:
登陸導出到的數據庫,執行
create table fromtable select * from db1.fromtable;數據庫
2.方法二:
在cmd下執行,mysqldump -u root -p db1 fromtable file=d:/fromtable.sql; 輸入祕密,root爲用戶名
登陸db2 執行 source d:/fromtable.sql;cmd
3.方法三:
登陸db1 執行 select * from fromtable into outfile "d:/fromtable .txt"; 導出純數據格式
登陸db2 執行 load data infile d:/fromtable .txt into table fromtable; 須要先建一張和原表結構同樣的空表。table
4.建一個odbc鏈接,先導出到access中,再導出到另外一個庫中。登錄