close
DECLARE @TestTable Table (Code varchar(10))
Insert into @TestTable
SELECT 'aBCd123'
union all
SELECT 'ABcd123'
union all
SELECT 'ABCD123'
union all
SELECT 'abcd123'
SELECT * FROM @TestTable
WHERE Code Collate SQL_Latin1_General_CP1_CS_AS = 'ABcd123'
文章標籤
全站熱搜