Syntax Error when using length function with repeat function in Athena

0

After running the below query in Athena I am getting the error:

SELECT
  REPEAT('*', LENGTH('testing'))  AS "e7cfff0a-f4d3-4fd9-a6cc-c5f7af177074"
FROM "default"."all_flights"
GROUP BY
  REPEAT('*', LENGTH('testing'))
LIMIT 500
SYNTAX_ERROR: line 2:3: Unexpected parameters (varchar(1), bigint) for function repeat. Expected: repeat(T, integer) T
This query ran against the "amtestdb" database, unless qualified by the query. Please post the error message on our forum  or contact customer support  with Query Id: 0f51f40e-66e1-4512-aa22-ed36b4f7bee6

Wondering why this query doesn't run as expected?

AWS
已提問 1 年前檢視次數 323 次
1 個回答
1

From your error seems as the LENGTH('testing') returns a BigInt, while REPEAT expects an Int as second parameter.

You can try to CAST(LENGTH('testing') AS INTEGER)

https://docs.aws.amazon.com/redshift/latest/dg/r_CAST_function.html

profile picture
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南