There is a string '10/01/2016 00:00' which needs to be cast to mysql type DATETIME.
Trying to do this:
select STR_TO_DATE('10/01/2016 00:00', '%d/%m/%Y %h:%i'); the format seems to be correct, and returns all the same NULL. What am I doing wrong?