导入
load data infile '/usr/test1.sql' into table test fields terminated by "," enclosed by '"';
导出
select * from test into outfile '/usr/test1.sql' fields terminated by ',' enclosed by '"';
mysqldump -u root -p test test>/usr/testtest.sql;
- THE END -
最后修改:2021年6月20日