I've tried importing the following CSV file with UTF-8 encoding into MySQL, but the Chinese characters are not correctly populating. I also changed the column collate to utf8 - default collation and big5-big5_chinese_ci , but the data is still not populating the correct characters.
Data I'm trying to import: Data I'm trying to import into MySQL
SQL Query I'm using to import data:
LOAD DATA LOCAL INFILE 'C:\\Users\\Ulises.Sotomoyor\\Downloads\\Insights.csv'
INTO TABLE unpaid_media.insights
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES
(@Date, Section, Language, Insights)
SET Date = str_to_date(@Date, '%m/%d/%Y')
MySQL Table Setting/Collation: MySQL Table Setting/Collation