Apache Presto - array_sort(x)



Query

presto:default> select array_sort(array[23,12,34]) as sort;

Result

     sort 
-------------- 
 [12, 23, 34]
apache_presto_sql_functions.htm
Advertisements