Created
March 25, 2014 00:35
-
-
Save bennadel/9752615 to your computer and use it in GitHub Desktop.
SQL Server Text Matching Is Case INSENSITIVE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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