Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should SQL functions be uppercase or lowercase?

I am new in SQL and I was wondering what is the right way to write the functions. I know the norm for statements like SELECT is uppercase, but what is the norm for functions? I've seen people write them with lowercase and others in uppercase.

Thanks for the help.

like image 1000
user1919052 Avatar asked Dec 15 '22 12:12

user1919052


1 Answers

There's no norm on that, there are standards, but those can change from company to company.

SQL code is not case sensitive.

like image 51
Adriano Carneiro Avatar answered Dec 26 '22 14:12

Adriano Carneiro