As the title says: I have a bunch of tab delimited text files containing data.
I know that if I use the CREATE TABLE statements to manually configure all the tables, I can then import them into the wait tables using "load data" or "mysqlimport".
But is there any way in MySQL to create tables automatically based on tab files? It seems like it should be. (I know that MySQL can guess the data type of each column, but you can specify this in the first line of the tab files.)
AP257 source share