DECLARE @Test TABLE (Fld1 varchar(200))
INSERT INTO @Test VALUES ('Abra')
INSERT INTO @Test VALUES ('Adam')
INSERT INTO @Test VALUES ('Boris')
INSERT INTO @Test VALUES ('Cccccccc')
INSERT INTO @Test VALUES ('Dunkan')
SELECT *
FROM @Test
WHERE Fld1 COLLATE SQL_Latin1_General_Cp1_CI_AI BETWEEN 'A' AND 'C'
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.