0
轉儲CSV文件考慮以下代碼:無法找到從MySQL
mysql> select * into outfile 'atmout12.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\n' from atm_atm;
ERROR 1086 (HY000): File 'atmout12.csv' already exists
mysql> select * into outfile 'atmout1.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\n' from atm_atm;
Query OK, 2822 rows affected (0.02 sec)
我用上面的代碼到一個表中的數據轉換成CSV文件。正如你所看到的查詢運行良好,但我無法找到文件的位置。
我在文件夾中做了一個ls
,找不到它。我正在使用Ubuntu 11.04
'sudo find/-iname atmount12.csv' – Johan
抱歉,那不會返回任何內容。 – whatf
這是因爲你正在查看本地服務器,但是'select * into outfile'可以將東西保存在MySQL所在的遠程服務器上。 – Johan