i'm new bie @mysql
I have a problem with the data load csv into mysql table, case such as this:
Identity : name=Tomas, age=28, hoby=traveling;
Identity : name=Justin, age=29, hoby=Fhising;
I want results like this
|field1|field2| field3 |
|tomas | 28 |traveling|
|justin| 29 | fhising |
LOAD DATA LOCAL INIFILE 'home/test.csv'
IGNORE INTO TABLE identity
FIELDS TERMINATED BY ','
LINES TERMINATE BY ';'
(name,age,hoby)
what additional needs from this script
thanks
*sorry for my bad grammar :(