I have a table containing full body of water names in one column. ie:
- Golden Lake
- Blue Water Lake
- Muskoka River
- Sandy Bay
I would like to select the water name, but not the type of water [lake, river, ect...]
Individually, I use:
select replace(watername, 'Lake') from water;
But there are 5 different water types that I was hoping to catch in a single select statement.