"4/12/2009" is not the same as "04/12/2009"
Yes I realize that, but the .csv sheet I'm using has the date in that format (no leading 0) It comes from an external source, so I can't change the format on the .csv before hande unless I was to open the sheet everyday and do it manually (defeats the purpose of automating an ELT). So I'm trying to convert it to YYYYMMDD to import it into a mysql database. However the software doesnt recognize "4/12/2009" as a valid date, so it wont transform it into anything - just changes it to NULL.
I guess I can just change the field in the database to a VARCHAR and import it as text and deal with the date transformation later.