load words into mysql table using infile

mysql> load data infile ‘/mnt/everyone/wordlist.txt’ into table words fields terminated by ‘\r’;

where the table is called words and has a field called word

Leave a Comment