Apache Tajo - first_value (valore)

Controlliamo ora il file first_value(value) funzione con la seguente query.

Query

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

Risultato

La query precedente genererĂ  il seguente risultato.

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

Il primo valore 90 nella colonna Segna viene sostituito in tutte le righe utilizzando l'estensione first_value() funzione.