Skip to content

Instantly share code, notes, and snippets.

@bennadel
Created March 25, 2014 00:35
Show Gist options
  • Save bennadel/9752615 to your computer and use it in GitHub Desktop.
Save bennadel/9752615 to your computer and use it in GitHub Desktop.
SQL Server Text Matching Is Case INSENSITIVE
SELECT
id
FROM
address
WHERE
street1 = '123 Street St'
SELECT
id
FROM
address
WHERE
street1 = '123 STREET ST'
SELECT
id
FROM
address
WHERE
street1 = '123 StReEt sT'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment