1创建账号授权 grant all privileges on jenkinsddbes.* to 'jenkinsddbes'@'%' identified by '1iN@Da12tA&*ba33gf8'; 2.导出 mysqldump -u root -p jenkinsddbes > 2018-06-07.jenkinsddbes.sql 3.导入 [root@host-10-1-1-163 ~]# mysql -h 10.1.1.174 -u root -pzihoa@5tgbmy…
csv导入: load data local infile 'D:/pcode/shu/data/a.csv' into table a fields terminated by ','; csv导出: select * from b order by trade_dt into outfile 'd://output1.csv' fields terminated by ','optionally enclosed by ''lines terminated by'\r\n'; 标红为变量…