最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - BigQuery converting string to datetime - Stack Overflow

programmeradmin3浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 3

Try 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;
发布评论

评论列表(0)

  1. 暂无评论