I have a time stemp formated as a string like this: 2022_05_26_13_52_05 which is format as YYYY_MM_DD_hh_mm_ss how can I use BigQuery PARSE_TIMESTAMP to parse it? I try it with
SELECT PARSE_TIMESTAMP("%Y_%m_%d_%I_%M_%S", "2022_05_26_13_52_05") from `Something.test.my_table_name_*`
It fails at: Failed to parse input string "2022_05_26_13_52_05", but if I only parse PARSE_TIMESTAMP("%Y_%m_%d", "2022_05_26"). It works perfectly fine. Many thanks!