I have a table like this in a text file:
AT1G02160.1 P38824 5e-04 2013_11
AT1G02210.1 O81913 2e-14 2013_11
AT1G02350.1 P55826 1e-09 2013_11
AT1G02610.1 F4JKK0 1e-08 2013_11
AT1G03580.1 Q84WU2 1e-06 2013_11
AT1G04330.1 Q6NN02 6e-13 2013_11
that I would like to import to a table in a database of mine in MySQL. First, I thought to introduce the last column, with value 2013_11
, as a VARCHAR()
.However, In the end, it is a date (2013_11
means November 2013). So, I would like to add that field as a date in MySQL. I have done some research in Google, but I was not able to find anything useful to solve my problem.
Thanks in advance.