I want to use quotation with escape character. How can I do?
I have received error in SQL Server
Unclosed quotation mark after the character strin
You can escape quotation like this:
select 'it''s escaped'
result will be
it's escaped