Skip to content
Advertisement

How to get the first value from an undetermined group

Can anyone help me with this, I’m using Athena, and I was looking for some solution, well Athena doesn’t support variables, so how can I fill sessao as well? enter image description here

Advertisement

Answer

Assuming empty values mean nulls – you can use last_value window function with ignore nulls option:

Output:

value ts
a 2012-08-08 01:00:00.000
a 2012-08-08 01:01:00.000
a 2012-08-08 01:02:00.000
b 2012-08-08 02:00:00.000
b 2012-08-08 02:01:00.000
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement