I have the following query inside a jsp
file in Java.
String sql = "SELECT * FROM products WHERE productName = ? ";
I'd like my query to ignore camel case and return all words that were part of string
. For example, Desktop would return desktop for camel case and phone strong> cellphone , etc.
How can I do this?
I've tried to use %
, LIKE
and it does not work.