Hello,
I want a query for a search page, that will be case insensitive for the strings that I pass as parameters. How can it be done?
For example
select * from tasks where name like '%test%'
returns the entries with the keyword "test" but not the ohers with the keyword "Test".
Thanks for your help...
I want a query for a search page, that will be case insensitive for the strings that I pass as parameters. How can it be done?
For example
select * from tasks where name like '%test%'
returns the entries with the keyword "test" but not the ohers with the keyword "Test".
Thanks for your help...