Answer the question
In order to leave comments, you need to log in
How to configure sql query to be case sensitive?
A query such as "SELECT * FROM user WHERE name='dima'" will also return results where name is equal to Dima, dima, etc. How to implement strict validation?
Answer the question
In order to leave comments, you need to log in
SELECT * FROM user WHERE name='dima'
SELECT * FROM user WHERE binary name='дима'
Case sensitive look for your base. Diacritics and national standards are also important
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question