I have often seen the queries written in sql in CAPITAL LETTERS. Though i think sql is not case senstive why do most of them prefer to write in CAPITAL LETTERS ? Is it just a matter of choice or it has some logic ?
|
|
It was meant for readability. Before, SQL was written in plain-text editors (no syntax/code highlighting) and keywords needed to be differentiated for better readability and maintenance.
vs
See the difference? The first word in each line told the reader exactly what was going on (selecting something from somewhere where something). But now with syntax-highlighting, there's really no point. But it IS a best practice and allows SQL developers to be on the same page/style while developing. |
|||
|
|
|
It varies with when you learned SQL and who or where you learned it from. It originated on IBM mainframes and those definitely preferred upper-case. These days, I write the keywords in all-caps and the database objects in either lower-case or in SuitablyMixedCase. That simply makes it easy to see the keywords, while leaving the important information (table names, column names, etc) in more readable mainly lower-case letters. It makes it trivial to read past the keywords. Of course, I've been writing SQL for...ulp...over twenty-five years, so lots of stuff like this is simply 'second nature' and 'the way I've always done it'. But I find it makes for more readable SQL. |
|||
|
|
|
SQL is a case insensitive programming language, whether u write in CAPITAL or not it will not affect your logic. It is basically done to increase the readability of SQL Query |
|||
|
It's for readability. If we didn't have colored keywords, CAPS would allow us to distinguish keywords. |
|||
|
|
|
Entry level SQL:1992 is case sensitive and requires that identifiers (SQL keywords) are in upper case only. Or should I say "required": case insensitive identifiers has been a core standard feature since SQL:1999. I would guess that upper case keywords was the vernacular for programming language design in the late sixties/early seventies. Nowadays putting SQL keywords in upper case is merely a matter of taste and is my personal preference. I agree that it aids readability and this is why I use lower case for attribute names (with underscore element separators e.g. |
||||
|
|
|
There is no real purpose to it, it is simply a choice of style or convention. It wouldn't affect your them either way, personally I keep all of mine lower case. |
|||
|
|