Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


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 :(

share|improve this question

closed as too localized by Jocelyn, Bill the Lizard Apr 24 at 2:43

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.