mysql 增量数据导出导入
注:mysql 是安装在linux
1。导出
select *
into OUTFILE 'template_template.txt'
CHARACTER set utf8
FIELDS TERMINATED by '~'
from template_template
where templatename like '%安卓%'
outfile 默认是跟数据库所在路径,例:/var/lib/mysql/template/
也可以绝对路径,例:/home/myuser/
注意用户要有读写文件的权限
2.导入
在window机器
load data local infile 'c:/data/template_template.txt' into table template_template
character set utf8
fields terminated by '~';
注意:是/,而不是\
在linux机器
load data infile '/var/lib/mysql/template/template_template.txt' into table template_template
character set utf8
fields terminated by '~';
区别:在window机器多了local这个关键字
3.其他注意点:
注:mysql 是安装在linux
1。导出
select *
into OUTFILE 'template_template.txt'
CHARACTER set utf8
FIELDS TERMINATED by '~'
from template_template
where templatename like '%安卓%'
outfile 默认是跟数据库所在路径,例:/var/lib/mysql/template/
也可以绝对路径,例:/home/myuser/
注意用户要有读写文件的权限
2.导入
在window机器
load data local infile 'c:/data/template_template.txt' into table template_template
character set utf8
fields terminated by '~';
注意:是/,而不是\
在linux机器
load data infile '/var/lib/mysql/template/template_template.txt' into table template_template
character set utf8
fields terminated by '~';
区别:在window机器多了local这个关键字
3.其他注意点: