Our database has some terms included with different case (e.g. "apple" and "Apple").
When I try to get distinct values from the column (e.g. SELECT DISTINCT fruit FROM products
) it ignores case and shows "apple" just once. (Same happens also if I use GROUP BY
).
Is there a way to show all forms, without ignoring case?
We use MySQL 5.7