How can I parse a following string timestamp to timestamp from BigQuery: "16-AUG-22 01.50.20.000000 PM"
?
CodePudding user response:
Use below as an example
select parse_timestamp('%d-%b-%y %I.%M.%E*S %p', "16-AUG-22 01.50.20.000000 PM")
with output