Hi,
I'm having trouble with making my SELECT query case-insensitive.
I am using PHP to query a Lotus Domino database through ODBC. Everything works great but it case sensitive. I've tried lots of routes but not found one that works yet. Can anyone help??
The query is:
$query = "SELECT * FROM NCR WHERE DefectItemReturn='Yes' AND Spec_No LIKE '%$spec%' AND CompanyName LIKE '%$company%' AND Region LIKE '%$region%' AND ClearDate Is NOT Null AND Created>='$startdate' and Created<='$enddate' ORDER BY Spec_No";
It's the "Region" bit I want to be case-insensitive.
Cheers
Graeme