Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 328 Bytes

File metadata and controls

22 lines (15 loc) · 328 Bytes
description
This section contains reference documentation for the remove function.

remove

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