Sequence function in Amazon Athena

1.1k Views Asked by At

I am not able to use the sequence function amazon athena. It shows a syntax error saying : Not a window function: sequence

I wrote the following code : SELECT sequence(1, 1) OVER () as seq_num FROM <table_name>

1

There are 1 best solutions below

0
On

You might want to use ROW_NUMBER(). You can either use:

SELECT * FROM UNNEST(sequence(1, 5))

or

SELECT ROW_NUMBER() OVER() as seq_num FROM campaign_lookup