Who standardize SQL ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Who standardize SQL ?

Does it play important role in programming?

21st Feb 2018, 5:45 PM
Md Subhan
Md Subhan - avatar
3 Answers
+ 11
Google, Facebook, Twitter, etc are nothing but a simple template without their large databases! SQL is one of languages that query databases.
21st Feb 2018, 5:55 PM
777
777 - avatar
21st Feb 2018, 6:05 PM
BroFar
BroFar - avatar
+ 2
SQL is not a programming language! SQL stands for "Structured Query Language". It is designed to query and output data from relational databases and you can join, mix and transform the data from tables and views in virtually any way. It's extremely powerful for data transformation and the de facto standard as a database query language. But on the other hand it is not designed to do programming. For example there is no way to do loops with SQL. Oracle has developed PL/SQL to implement programming concepts on top. So, it is a very important complement to any other programming language if you ever work with databases and the Web does involve a ton of them in the backend! You most probably get in touch with it if you learn PHP since it usually processes the backend of Webpages and frequently data from a database is involved. Now, PHP itself can't query the databases. SQL is required for this purpose.
23rd Feb 2018, 10:08 PM
Christian