Answers for "is mysql case sensitive"

SQL
1

mysql like case sensitive

-- Use BINARY to make LIKE sensitive
SELECT 'abc' LIKE BINARY 'ABC';		-- 0
Posted by: Guest on June-19-2021
2

none

SELECT * FROM my_table WHERE upper(MY_COLUMN) = upper('My_String');
Posted by: Guest on January-31-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language