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 define your escape character, but you can only use it with a LIKE clause.
LIKE
Example:
SELECT columns FROM table WHERE column LIKE '%\%%' ESCAPE '\'
Here it will search for % in whole string and this is how one can use ESCAPE identifier in SQL Server.
%
ESCAPE
SQL Server