Tagged Questions
1
vote
3answers
227 views
Why does LIKE not return rows for variables with '%' at end?
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 ...