hello all
I have file something.txt where i have on every line one word. I have MySQl database witch have 2 columns. First collumn is primary key and the second is word from the something.txt. Why I do this?
The wordlist have 7 044 000words.That is about 19Mb size.
Usually a delimited file is used to import (CSV). I'm not sure if your file will import properly into two fields when you only have 1 word but you can try.
Import CSV file directly into MySQL | MySQL | Tech-RecipesCode:LOAD DATA INfile '/path/to/file' INTO TABLE <table> IGNORE 1 LINES
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks