I am doing a database migration and I currently have a string column with dates (versus having the optimal datetime field set for these). Is there a function I can call in MySQL to convert this field to a datetime so I can use the date features such as before this date or after this date?
Share
If your dates are in some weird format that
MySQLdoes not understand, useSTR_TO_DATE: