vote up 6 vote down star

I know this is a pretty basic question, and I think I know the answer...but I'd like to confirm.

Are these queries truly equivalent?


SELECT * FROM FOO WHERE BAR LIKE 'X'
SELECT * FROM FOO WHERE BAR ='X'

Perhaps there is a performance overhead in using like with no wild cards?

I have an app that optionally uses LIKE & wild cards. The SP currently does the like and appends the wild cards -- I am thinking of just updating the query to use like but have the app append the wild cards as needed.

Thanks in advance.

flag

73% accept rate

2 Answers

vote up 8 vote down check

As @ocdecio says, if the optimizer it's smart enough it should be no difference, but if you want to make sure about what's happening behind the scenes you should compare the two query execution plans.

link|flag
Very true, the execution plan is your friend. – ocdecio Dec 31 '08 at 23:12
Man, thanks! ...gosh I'm such a noob <sigh> this is the first I've heard of 'query execution plans' – javamonkey79 Dec 31 '08 at 23:15
We all were noobies one day. – ocdecio Dec 31 '08 at 23:36
Yeah, we always learn something new every day... – CMS Jan 1 '09 at 0:13
vote up 3 vote down

Any good optimizer would reduce the first expression to the second.

link|flag
Well, maybe, but if it's a parameterized query where the query plan is reused, and the parameters sometimes have wildcards and sometimes not, that wouldn't be necessarily a good idea. Either way, there should be no performance penalty. – le dorfier Dec 31 '08 at 23:09
@le dorfier: I agree, in the generic case that is true. In the very specific and narrow case above, well, that's an easy one for the optimizer. – ocdecio Dec 31 '08 at 23:11
I'm not so sure the optimise can handle this for parm'd queries since like won't use any index – annakata Dec 31 '08 at 23:15
LIKE uses indexes as long as there's no wildcard at the beginning of the search string. – le dorfier Dec 31 '08 at 23:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.