I executed this query:
SELECT name FROM `product` WHERE `name` like "product%"
It returns "product 01" and "Product 02". Check here second value has capital "P" which is unwanted in result.
So how can I solve this?
I executed this query:
SELECT name FROM `product` WHERE `name` like "product%"
It returns "product 01" and "Product 02". Check here second value has capital "P" which is unwanted in result.
So how can I solve this?
You can try BINARY
SELECT name FROM `product` WHERE BINARY `name` like 'product%'