mysql 导出CSV

来源:互联网 发布:开票软件界面 编辑:程序博客网 时间:2024/05/22 03:40


http://blog.csdn.net/sara_yhl/article/details/6850107



    select * from test_info   
    into outfile '/tmp/test.csv'   
    fields terminated by ',' optionally enclosed by '"' escaped by '"'
    lines terminated by '\r\n';   


原创粉丝点击