How do I construct a SQL query (MS SQL Server) where the "where" clause is case-insensitive?
SELECT * FROM myTable WHERE myField = 'sOmeVal'
I want the results to come back ignoring the case
|
How do I construct a SQL query (MS SQL Server) where the "where" clause is case-insensitive?
I want the results to come back ignoring the case |
|||||
|
|
In the default configuration of a SQL Server database, string comparisons are case-insensitive. If your database overrides this setting (through the use of an alternate collation), then you'll need to specify what sort of collation to use in your query.
Note that the collation I provided is just an example (though it will more than likely function just fine for you). A more thorough outline of SQL Server collations can be found here. |
|||
|
|
|
Usually, string comparisons are case-insensitive. If your database is configured to case sensitive collation, you need to force to use a case insensitive one:
|
|||||||||
|
|
I found another solution elsewhere; that is, to use
but everyone here is saying that, in SQL Server, it doesn't matter because it's ignoring case anyway? I'm pretty sure our database is case-sensitive. |
|||||||||||||||||
|
|
No, only using A pracitcable solution is using the
The statement compares two lowercase strings, so that your 'sOmeVal' will match every other notation of 'someval' (e.g. 'Someval', 'sOMEVAl' etc.). |
|||||
|
|
What database are you on? With MS SQL Server, it's a database-wide setting, or you can over-ride it per-query with the COLLATE keyword. |
|||
|
|
|
You can force the case sensitive, casting to a varbinary like that:
|
|||||
|
|
Ach SO! I have the same say on this; use the 'upper' method on both field and value :-) |
|||
|
|