Apache Tajo - first_value (valor)

Vamos agora verificar o first_value(value) função com a seguinte consulta.

Inquerir

sampledb> select first_value(mark) over (order by name) as firstvalue from mytable;

Resultado

A consulta acima irá gerar o seguinte resultado.

firstvalue 
------------------------------- 
90 
90 
90 
90 
90 
90 
90 
90 
90 
90

O primeiro valor 90 na coluna Mark é substituído em todas as linhas usando o first_value() função.