What is “Structured” in Structured Query Language?

后端 未结 4 1781
执笔经年
执笔经年 2020-12-10 12:19

What does the \"Structured\" word means in SQL?

Is it because this(SQL) language statements are organized into Clauses, expressions and predicates?

Because o

4条回答
  •  既然无缘
    2020-12-10 12:46

    As I understand it, SQL is actually an abbreviation of SEQUEL, or Structured English Query Language. It was meant to have queries that everyone could read. The structured part means that you can only use a structured English; i.e. select col1 from table1, but not give col1 out of table1.

提交回复
热议问题