Answers for "mysql make table case insensitive"

2

mysql select case insensitive

SELECT id 
  FROM groups
 WHERE LOWER(name)=LOWER('Administrator')
Posted by: Guest on July-13-2021
1

where case insensitive mysql

SELECT * FROM `table` WHERE LOWER(`Value`) = LOWER("THE_VALUE")
Posted by: Guest on January-21-2021

Code answers related to "mysql make table case insensitive"

Browse Popular Code Answers by Language