Hello!
I have this query but it only works if the first letter is a capital.
This is the query:
And this doesn't work....:
I realy don't get it....
Thanks in advance!
Paul
I have this query but it only works if the first letter is a capital.
This is the query:
Code:
SELECT id, companyname, city FROM crediteuren WHERE ( companyname LIKE '%Someon%' ) OR (city LIKE '%Someon%' ) ORDER BY companyname
Code:
SELECT id, companyname, city FROM crediteuren WHERE ( companyname LIKE '%someon%' ) OR (city LIKE '%someon%' ) ORDER BY companyname
Thanks in advance!
Paul
Comment