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';   
相關文章
相關標籤/搜索