I have column names (notes) as
Notes:
John's table
Smith Window
The column contains an apostrophe. I am trying to run 2 queries.
- Select a query to get the column entries with an apostrophe.
- Update those with an apostrophe with an empty string, i.e. Replace John's table with John's table
select notes from table 1, where notes are of type "%";
I get a syntax error, any help would be great.
source share