Link to home
Start Free TrialLog in
Avatar of lcor
lcor

asked on

Case sensitive like query

Have the following query:

select name from table_name whre name like %somestring%

The values in name can be upper and lower case.  I find when running this query that it is case-sensitive.  That is, somestring has to be uppercase if name is uppercase.

How can I make this query less case-sensitvie?
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of csachdeva
csachdeva

You can use Proper() function for your operation.

Regards,
Chetan Sachdeva