我是googlebigquery的新手,所以我刚刚开始学习sql。我使用string函数得到这个错误(标准sql是打开的)。我猜这个函数不适合标准sql,我该如何更改它?
SELECT STRing(visitor_id) as id
No matching signature for function STRING for argument types: INT64. Supported signature: STRING(TIMESTAMP, [STRING]) at [28:10]
我是googlebigquery的新手,所以我刚刚开始学习sql。我使用string函数得到这个错误(标准sql是打开的)。我猜这个函数不适合标准sql,我该如何更改它?
SELECT STRing(visitor_id) as id
No matching signature for function STRING for argument types: INT64. Supported signature: STRING(TIMESTAMP, [STRING]) at [28:10]
1条答案
按热度按时间hi3rlvi21#
转换和
int64
对于字符串,可以使用cast()
:如错误消息所示
string()
函数用于timestamp
s转换为可读格式。它基本上是format_timestamp()
,使用合理的格式。