mysql 資料匯出匯入
阿新 • • 發佈:2021-02-02
今天合併連個資料庫的內容 : db1 以及 db2。 這兩個庫有部分表名一樣,雖然這些表的結構與內容不一樣。
1、 找到共有的表
select table_name from information_schema.TABLES
where TABLE_NAME in (select table_name from information_schema.TABLES where TABLE_SCHEMA='xwl') and TABLE_SCHEMA="zxtd"
2、 刪除表
drop table db1.table_one
說明: 沒有嘗試批量刪除,以後可以試下。
3 、匯出資料
./bin/mysqldump -uuser -ppassed db2 > db2.sql
4、匯入資料
方法一:
source
use db1
source ./path/to/sql/db2.sql
如果db1 有資料,導完後,db1中沒有看到db2的表