Translation

/ * 
Case 3: The second query employee names for the characters _ employees name 
* / 
the SELECT 
last_name, 
salary 
the FROM 
the Employees 
the WHERE 
last_name the LIKE '% _ $ _' ESCAPE '$' ;  last_name the LIKE '_ \ _%';

\ Right slash character translation
when conditions can be translated using the ESCAPE statement need the right slash characters

Guess you like

Origin www.cnblogs.com/rijiyuelei/p/12323818.html