Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Why is SQL usually written in CAPS?
Why are keywords in SQL usually written in capital letters? For example:
SELECT * FROM person WHERE mood = 'happy';
My understanding is that SQL is case insensitive, so the case doesn't actually make a difference?
2 answers
Since the tradition doesn't have any enforcement anywhere, we can't necessarily pinpoint a single reason, but it probably has a lot to do with the available technology of the early 1970s when Chamberlain and Boyce put together the original SEQUEL. Specifically, punch cards and teletype machines generally didn't support multiple cases of character, even when the computer itself might.
However, COBOL notably follows many of the same conventions, and SQL takes a lot of cues from COBOL. Speaking of which, COBOL's metalanguage (used to describe the language) might also have some influence, where it uses all-uppercase to identify reserved words.
I should also mention that FORTRAN has a similar tradition, but while it has a similar age to COBOL, we haven't generally heard about programmers developing with FORTRAN and SQL.
0 comment threads
Though probably not the original reason, I would say it's still useful as it brings some kind of distinction between keywords and variables/columns, since SQL consists mostly of words with less punctuation than other programming languages. Consider:
SELECT name FROM animal LIMIT 10
which contains only spaces as non-alphanumeric characters.
vs
animal.filter(limit=10)
containing a dot, a pair of parentheses and an equals sign as non alphanumeric characters.
Of course, there's syntax highlighting to show the distinction, but I think caps still add something.
0 comment threads