What is the escape character in SQL? Assume you have to find the the names that contains single quote (‘), in this scenario single quote(‘) itself works as the escape character.  SELECT * FROM Person.Person WHERE LastName LIKE ‘%”%’ Consider the situation where you are tying to find records which… Continue Reading Escape Character – MS SQL