I want to replace all values from a column, like for example, to replace all values from lane column to 'All lanes' value. I tried to use REPLACE function : REPLACE(lane, '%', 'All lanes') but it does not work that way though. Any thoughts? Thanks in advance!
| lane |
|---|
| WA-OR |
| TX-NY |
| MA-NJ |
Expected output:
| lane |
|---|
| All lanes |
| All lanes |
| All lanes |