Answers for "mysql ignore case"

2

mysql select case insensitive

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

select binary case sensitove

SELECT *  FROM `table` WHERE BINARY `column` = 'value'
Posted by: Guest on June-23-2020
1

where case insensitive mysql

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

Browse Popular Code Answers by Language