Reputation: 873
I have a bq table withhas a column timestamp
as a string, with format 20090630 16:36:23:880
, how can I convert it to a proper timestamp ?
Upvotes: 0
Views: 258
Reputation: 173171
parse_datetime('%Y%m%d %H:%M:%E3S', '20090630 16:36:23.880')
Upvotes: 2