I have a field where users use a date picker to select a date. The value gets saved as "mm/dd/yyyy". I'm creating a query that needs to turn that into a timestamp. I tried using:
UNIX_TIMESTAMP(STR_TO_DATE(po.dueToProduction, '%y%m%d'))
but results were returned.