MySQL匯入匯出CSV檔案

2021-06-02 11:04:59 字數 1024 閱讀 4843

mysql自己提供了匯入匯出資料庫的工具,但有時我們需要僅僅匯入匯出單個表的資料,比如匯入匯出csv檔案,此時可以使用mysql自動的命令來做匯入匯出工作。

匯出語法如下:

select * from [table]

into outfile '[file]';

或者select * from [table]

into outfile '[file]'

fields terminated by ','

optionally enclosed by '"'

lines terminated by '\n';

下邊是乙個具體的匯出的例子:

select * from mytable 

into outfile '/tmp/mytable.csv'

fields terminated by ','

optionally enclosed by '"'

lines terminated by '\n';

匯入語法如下:

load data infile '[file]'

into table [table];

或者load data infile '[file]'

into table [table]

fields terminated by ','

optionally enclosed by '"'

lines terminated by '\n';

下邊是乙個具體的匯入的例子:

load data infile '/tmp/mytable.csv' 

into table mytable

fields terminated by ','

optionally enclosed by '"'

lines terminated by '\n';

MySQL匯入匯出CSV檔案

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!mysql自己提供了匯入匯出資料庫的工具,但有時我們需要僅僅匯入匯出單個表的資料,比如匯入匯出csv檔案,此時可以使用mysql自動的命令來做匯入匯出工作。匯出語法如下 select from table into outfile file 或者s...

MySQL匯入匯出CSV檔案

mysql自己提供了匯入匯出的工具,但有時我們需要僅僅匯入匯出單個表的資料,比如匯入匯出csv檔案,此時可以使用mysql自動的命令來做匯入匯出工作。匯出語法如下 select from table into outfile file 或者 select from table into outfil...

CSV檔案匯入匯出MySQL

使用sqlyog 工具匯入檔案資料到mysql excel檔案匯入匯出 需要驅動 microsoft office 2007驅動 匯入需要注意的問題 1.excel裡數值列,預設匯入會變成浮點型。所以,匯入時,選擇目的表時 要修改map處的字段型別,保持和資料庫表一致就行。csv檔案匯入匯出 匯入 ...