I\'m on presto and have a date formatted as varchar that looks like -
7/14/2015 8:22:39 AM
I\'ve looked the presto docs and tried various
I figured it out. The below works in converting it to a 24 hr date format.
select date_parse('7/22/2016 6:05:04 PM','%m/%d/%Y %h:%i:%s %p')
See date_parse documentation in Presto.