My sample data column in my xls is:
|numbers | 1 | 2 | 3 |
| 1 | a | b | c |
| 2 |a.1|b.2|c.3|
I have a table of in MySQL table
|numbers | 1 | 2 | 3 |
I'm using this code
LOAD DATA LOCAL INFILE 'C:/a.xls'
INTO TABLE mytable FIELDS TERMINATED BY ';' ENCLOSED BY '"' LINES TERMINATED BY '\r\n';
My Result becomes especial characters, how can I get the full detail?