Problem
You are trying to parse a 12-hour (AM/PM) time value with to_timestamp(), but instead of returning a 24-hour time value it returns null.
For example, this sample code:
%sql SELECT to_timestamp('2016-12-31 10:12:00 PM', 'yyyy-MM-dd HH:mm:ss a');
Returns null when run:
Cause
to_timestamp() requires the hour format to be in lowercase.
If the hour format is in capital letters, to_timestamp() returns null.
Solution
Make sure you specify the hour format in lowercase letters.
For example, this sample code:
%sql SELECT to_timestamp('2016-12-31 10:12:00 PM', 'yyyy-MM-dd hh:mm:ss a');
Returns the time as a 24-hour time value.