Apache Presto - array_remove(x,element)



Query

presto:default> select array_remove(array[1,2,3],2) as remove; 

Result

 remove 
-------- 
 [1, 3] 
apache_presto_sql_functions.htm
Advertisements