Patrick Buxton
10/06/2025, 4:08 PMto_iso8601, but how to convert back the other way. The to_tera_timestamp does not accept the format.
select to_tera_timestamp('2025-02-03T09:15:33', 'yyyy-dd-mm"T"hh24:mi:ss');
Is there a different way?Robert Raharjo
10/06/2025, 10:49 PMstr_to_date
select str_to_date('2025-02-03T09:15:33', '%Y-%m-%dT%H:%i:%s');
https://docs.starrocks.io/docs/sql-reference/sql-functions/date-time-functions/str_to_date/Patrick Buxton
10/07/2025, 5:55 AM