gpt4 book ai didi

date - BigQuery - DATE_TRUNC 错误

转载 作者:行者123 更新时间:2023-12-05 02:16:36 26 4
gpt4 key购买 nike

尝试从 Legacy 表中获取每月汇总数据。意思是日期列是字符串:

amount  date_create
100 2018-01-05
200 2018-02-03
300 2018-01-22

但是,命令

 Select DATE_TRUNC(DATE date_create, MONTH) as month, 
sum(amount) as amount_m
from table
group by 1

返回以下错误:

Error: Syntax error: Expected ")" but got identifier "date_create"

为什么这个查询没有运行,可以做些什么来避免这个问题?

谢谢

最佳答案

看起来你打算在那里转换 date_create 而不是使用 DATE 关键字(这是你构造文字值的方式)。试试这个:

Select DATE_TRUNC(DATE(date_create), MONTH) as month, 
sum(amount) as amount_m
from table
GROUP BY 1

关于date - BigQuery - DATE_TRUNC 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49381866/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com