Mysql 匯入匯出csv 中文亂碼

2022-04-02 07:23:17 字數 746 閱讀 7456

這篇文章介紹了mysql 匯入匯出csv 中文亂碼問題的解決方法,有需要的朋友可以參考一下

匯入csv:

load data infile '/test.csv' into table table_name 

fields terminated by ','  optionally 

enclosed by '"' escaped by '"' 

lines terminated by '\r\n' 

ignore 1 lines;

導csv:

select * into outfile '/test.csv'  

fields terminated by ',' optionally 

enclosed by '"' 

lines terminated by '\n' 

from table_name;

解決匯出csv中文亂碼問題:

將csv用txt開啟,另存為,選擇utf8編碼即可。

解決匯入問題:

mysql安裝目錄下的my.ini,增加如下引數:

[client]

default-character-set=utf8

[mysqld]

default-storage-engine=innodb

character-set-server=utf8

collation-server=utf8_general_ci

重啟mysql服務。

Mysql 匯入匯出csv 中文亂碼

這篇文章介紹了mysql 匯入匯出csv 中文亂碼問題的解決方法,有需要的朋友可以參考一下 匯入csv load data infile test.csv into table table name fields terminated by optionally enclosed by escape...

MySQL匯入匯出CSV檔案

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

MySQL匯入匯出CSV檔案

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