I find this quite odd on Microsoft SQL Server:

SELECT * FROM deliveries WHERE code LIKE '01999195000%'
-- 9 rows returned. Works.

DECLARE @a VARCHAR(10)
SET @a='01999195000%'
SELECT * FROM deliveries WHERE code LIKE @a
-- 0 rows returned? Why not?

SET @a = '01999195000'
SELECT * FROM deliveries WHERE code LIKE @a + '%'
-- 9 rows returned. Works.

What is different between searching for @a which includes the % character, and one that does not but has '%' appended?

If any of you SQL Guru's could share your thoughts, that would be great.

link|improve this question

feedback

3 Answers

up vote 27 down vote accepted

It's because you've defined @a as a VARCHAR(10), but you've tried putting 12 characters into it...meaning the "%" gets lost from the end

link|improve this answer
Nice! I didn't notice that - – Dirk Aug 7 '09 at 14:38
+1 - Good catch. – a'b'c'd'e'f'g'h' Aug 7 '09 at 14:38
1  
Actually, I count 12, but the point is still valid. – Joel Coehoorn Aug 7 '09 at 14:39
Oops, I can't count :) Corrected – AdaTheDev Aug 7 '09 at 14:40
8  
God, what an idiot I am!! – Simon Hughes Aug 7 '09 at 14:45
feedback

DECLARE @a VARCHAR(10) is the answer. @a never contains the %.

link|improve this answer
1  
+1 doh!, missed a ton of up votes by just a little.... – KM. Aug 7 '09 at 14:56
Haha, thanks! :P – Mr. Smith Aug 7 '09 at 15:00
feedback

LIKE is a wildcard character, meaning "anything you like here".

link|improve this answer
1  
True, but that isn't the problem given the code provided. I think AdaTheDev has the answer. – JohnFx Aug 7 '09 at 14:39
Yep, That sounds about right. – rikh Aug 7 '09 at 14:49
feedback

Your Answer

 
or
required, but never shown

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