Is sql case insensitive ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is sql case insensitive ?

4th May 2017, 2:32 PM
mahesh mahi
mahesh mahi - avatar
3 Answers
+ 2
Yes
4th May 2017, 2:34 PM
Calviղ
Calviղ - avatar
+ 1
SQL keywords like SELECT, FROM, WHERE etc are case-insensitive but as per coding standards they are often written in CAPS. However in some setups table and column names are case-sensitive. MySQL has a configuration option to enable/disable it.
5th May 2017, 12:33 PM
Uva Prakash P
Uva Prakash P - avatar
0
Yes and no. The actual SQL keywords (select, insert, where, between, alter...) are case-insensitive, but concerning the names of tables, fields and so on, they are case-insensitive in some RDBMSs (like Oracle) and case-sensitive in others (like MS SQL Server).
4th May 2017, 4:45 PM
Álvaro