+ 1
What is the best style to write sql? Is it camel case, or other?
The best way to write sql
4 ответов
+ 3
So SQL is case insensitive, but it is common to write keywords in Caps. Example:, SELECT a,b FROM c WHERE.....
+ 2
Uppercase for the keywords. Snake case or camel case for the rest.
+ 1
Uppercase is usual
+ 1
Are the two ways right: " SELECT firstName FROM persons" and "SELECT first_name FROM persons" ?