MySQL中导入 导出CSV

MySQL中导出CSV格式数据的SQL语句样本以下:mysql Sql代码   select * from test_info    into outfile '/tmp/test.csv'    fields terminated by ',' optionally enclosed by '"' escaped by '"'    lines terminated by '\r\n';   
相关文章
相关标签/搜索