I have the following date format
28 Aug 2010 17:40:58 +0000
Can anyone suggest how can I get this in the type of date or date when you paste in mysql
I am importing the following path from the file.
load data local infile 'uniq.csv' into table tblUniq fields terminated by ',' enclosed by '"' lines terminated by '\n' (uniqName, uniqCity, uniqComments)
I'm not sure how to handle the date value, so it will be structured correctly for mysql.
thanks
Steve source share