admin管理员组文章数量:1345295
I'm using BigQuery to try I have a table with a string column called 'DATAUTILIZACAO' that has the following sample values:
02/11/16 12:19:08,000000
02/11/16 17:39:41,000000
The text is formatted as "DD/MM/YY HH:mm:ss" I need to create a new column of type DATETIME containing the value of DATAUTILIZACAO.
How can I get the value from DATAUTILIZACAO format it as "YYYY-MM-DD HH:MI:SS" and save it to the new column?
Can I do that using Query+UDF directly ?
Thanks,
Leo
I'm using BigQuery to try I have a table with a string column called 'DATAUTILIZACAO' that has the following sample values:
02/11/16 12:19:08,000000
02/11/16 17:39:41,000000
The text is formatted as "DD/MM/YY HH:mm:ss" I need to create a new column of type DATETIME containing the value of DATAUTILIZACAO.
How can I get the value from DATAUTILIZACAO format it as "YYYY-MM-DD HH:MI:SS" and save it to the new column?
Can I do that using Query+UDF directly ?
Thanks,
Leo
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Nov 3, 2016 at 21:58 C. LeoC. Leo 631 gold badge1 silver badge8 bronze badges2 Answers
Reset to default 3Try below (for Standard SQL - see Enabling Standard SQL and Migrating from legacy SQL)
WITH TheTable AS (
SELECT '02/11/16 12:19:08,000000' AS DATAUTILIZACAO UNION ALL
SELECT '02/11/16 17:39:41,000000' AS DATAUTILIZACAO
)
SELECT DATAUTILIZACAO, PARSE_TIMESTAMP('%d/%m/%y %H:%M:%S,000000', DATAUTILIZACAO) AS parsedDATAUTILIZACAO
FROM TheTable
see more on PARSE_TIMESTAMP()
You can use PARSE_DATETIME
to get a DATETIME
value from the strings using standard SQL (uncheck "Use Legacy SQL" under "Show Options"). For example,
WITH T AS (
SELECT DATAUTILIZACAO
FROM UNNEST(['02/11/16 12:19:08,000000',
'02/11/16 17:39:41,000000']) AS DATAUTILIZACAO
)
SELECT PARSE_DATETIME('%D %T,000000', DATAUTILIZACAO) AS dt
FROM T;
本文标签: javascriptBigQuery converting string to datetimeStack Overflow
版权声明:本文标题:javascript - BigQuery converting string to datetime - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743807952a2542525.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论