Here is the Case Sensitive Query for performing Matching in Database Tables.
Its SQL Query supported in MySQL.
Its SQL Query supported in MySQL.
SELECT 'abc' LIKE 'ABC';
Returns -> 1
SELECT 'abc' LIKE BINARY 'ABC';
Returns -> 0
Comments
Post a Comment