Does any one know how can I find the character "%" in a string using "Like". Normaly the "%" is a wild-card character. Thanks.
Highlander
You should use escape character: SELECT last_name FROM employees WHERE last_name LIKE '%A\_B%' ESCAPE '\';
Forum Rules