分析函数
first
first返回一组行中的第一个值。
atlasdb=# select plvchr.first(id::text) from first_test order by id; first ------- 1 2 3 4 9 (5 rows)
last
last返回一组行中的最后一个值。
atlasdb=# select plvchr.last(id::text) from first_test order by id; last ------ 1 2 3 4 9 (5 rows)