I am passing a date time:
2015-12-23T09:57:00.000Z
To a stored procedure in mariaDB. The stored procedure doesn't like the javascript date/time, how do I convert the date/time for use in the stored procedure?
I've been playing around with 'str_to_date':
select str_to_date('2015-12-23T09:57:00.000Z', '%Y-%M-%dT%h:%i:%s');
However this returns (NULL).