Skip to main content

Posts

Showing posts with the label MySQL
Here is the Case Sensitive Query for performing Matching in Database Tables. Its SQL Query supported in MySQL. SELECT 'abc' LIKE 'ABC'; Returns -> 1  SELECT 'abc' LIKE BINARY 'ABC'; Returns -> 0