punchykool
MIS
Hello,
trying to find a double-quote (") in a varchar field.
How do we do this?
I have tried these, but obviously there are three sets of quotes and it doesn't like that. Aside from unloading the table and using other tools to find it, can we comment out the quote so it will return those matching the criteria?
select * from tocs where toc_name like "%"%"
select * from tocs where toc_name like "%\"%"
trying to find a double-quote (") in a varchar field.
How do we do this?
I have tried these, but obviously there are three sets of quotes and it doesn't like that. Aside from unloading the table and using other tools to find it, can we comment out the quote so it will return those matching the criteria?
select * from tocs where toc_name like "%"%"
select * from tocs where toc_name like "%\"%"