cjard
03-16-2007, 06:11 PM
I have some stored procedures with a single underscore in the name:
TEST2_200601011234
TEST2_200701011234
Can someone tell me why the following queries returns two records:
SELECT * FROM user_procedures WHERE object_name LIKE 'TEST2__%'
SELECT * FROM user_procedures WHERE object_name LIKE 'TEST2_______%'
If _ is the wildcard for a single character, how do I turn that off?
TEST2_200601011234
TEST2_200701011234
Can someone tell me why the following queries returns two records:
SELECT * FROM user_procedures WHERE object_name LIKE 'TEST2__%'
SELECT * FROM user_procedures WHERE object_name LIKE 'TEST2_______%'
If _ is the wildcard for a single character, how do I turn that off?