What is the best style to write sql? Is it camel case, or other? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the best style to write sql? Is it camel case, or other?

The best way to write sql

22nd Aug 2019, 12:26 PM
Elcio Cestari
Elcio Cestari - avatar
4 Answers
+ 3
So SQL is case insensitive, but it is common to write keywords in Caps. Example:, SELECT a,b FROM c WHERE.....
22nd Aug 2019, 12:32 PM
Tom Hammerbacher
Tom Hammerbacher - avatar
+ 2
Uppercase for the keywords. Snake case or camel case for the rest.
22nd Aug 2019, 12:31 PM
Tashila Pathum
Tashila Pathum - avatar
+ 1
Uppercase is usual
22nd Aug 2019, 12:26 PM
Nico Ruder
Nico Ruder - avatar
+ 1
Are the two ways right: " SELECT firstName FROM persons" and "SELECT first_name FROM persons" ?
23rd Aug 2019, 12:33 AM
Elcio Cestari
Elcio Cestari - avatar