arrayRemoveString
This section contains reference documentation for the arrayRemoveString function.
Last updated
Was this helpful?
This section contains reference documentation for the arrayRemoveString function.
Removes value from array of strings.
arrayRemoveString('colName', value)
These examples are based on the Hybrid Quick Start.
select RandomAirports,
arrayRemoveString(RandomAirports, 'SEA') AS value
from airlineStats
WHERE arraylength(RandomAirports) BETWEEN 2 AND 4
limit 5SEA,PSC
PSC
SEA,PSC,PHX,MSY
PSC,PHX,MSY
SEA,PSC,PHX,MSY
PSC,PHX,MSY
SEA,PSC
PSC
SEA,PSC
PSC
Last updated
Was this helpful?
Was this helpful?

