1. 程式人生 > >MySql匯入匯出檔案

MySql匯入匯出檔案

說明

在進行分庫分表資料遷移時,用到了MySql的匯入匯出(infile/outfile)功能實現資料的批量操作。

示例

# 匯出
mysql> select * into outfile '/home/hanchao/t_person0' from t_person where id % 16 = 0;

# 匯入
mysql> load data infile '/home/hanchao/t_person0' into table t_person0;