如何在 Google Bigquery 中将时间戳转换为日期数据类型 [英] How to convert Timestamp to Date Data Type in Google Bigquery

查看:23
本文介绍了如何在 Google Bigquery 中将时间戳转换为日期数据类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用以下方法将时间戳数据类型列转换为日期数据类型:

I am trying to convert Timestamp data type columns to Date datatype using:

bq query -q --destination_table=NEW_DATE_TABLE --replace "SELECT DATE(CURR_DT) AS CURR_DT from TEST.DATE_TABLE"

新表将列显示为 STRING 而不是 date.有没有办法将时间戳转换为 date 数据类型.

The new table shows the column as STRING rather than date. Is there a way to convert timestamp to date data type.

要求截图

推荐答案

如果您使用 标准 SQL,您可以执行以下操作:

If you use Standard SQL, you can do the following:

SELECT * REPLACE(EXTRACT(DATE FROM curr_dt)) AS curr_dt FROM test.date_table

如果 curr_dt 是重复字段,那么解决方案将如下所示:

If curr_dt is repeated field, then the solution will look the following:

SELECT * REPLACE(
  ARRAY(
    SELECT EXTRACT(DATE FROM curr_dt) FROM t.curr_dt
  ) AS curr_dt)
FROM test.date_table t

这篇关于如何在 Google Bigquery 中将时间戳转换为日期数据类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆