remove

This section contains reference documentation for the remove function.

Removes all instances of search from string

Signature

remove(input, search)

Usage Examples

select remove('foo bar foo sheep', 'foo') AS value
from ignoreMe
value

bar sheep

Last updated