I have a excel file like this:
a
1 word1 : mean1
2 word2 : mean2
3 word3 : mean3
.
.
and I have saved this a cvs file. Can I import this cvs file to mysql with this table?
id word mean
1 word1 mean1
2 word2 mean2
I have tried CSV using LOAD DATA with Fields terminated by : and only ids imported.
Thanks in advance