0
What does case sensitive means?
SQL is case sensitive that means if we write in upper or lower case does it means the same.?
5 Answers
+ 2
It means use the "equalsIgnoreCase" method.syntax Syntax may vary from language to language.
+ 2
It means that if you write a variable name in capitals, like NAME, and then you write a variable called name, they will be different variables.
+ 1
no, it's actually the opposite.
case sensitive: HeLLo != hellO
+ 1
Case sensitive means that uppercase and lowercase are treated as different.
+ 1
Case sensitive: differentiating between capital and lower-case letters.