What is “Structured” in Structured Query Language?

后端 未结 4 1765
执笔经年
执笔经年 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.

    0 讨论(0)
  • 2020-12-10 12:46

    from: http://wiki.answers.com/Q/Why_sql_is_called_structured_query_language

    SQL, the standard that was later developed from Codd's work, provides a means of describing data with its natural structure only - that is, without superimposing any additional structure for machine representation purposes.

    0 讨论(0)
  • 2020-12-10 12:52

    Mostly because it is a backronym. They needed a S to make Sequel.

    0 讨论(0)
  • 2020-12-10 13:10

    The original full name was SEQUEL, which stood for "Structured English Query Language". It later had to be renamed to SQL due to trademark issues.

    So basically, it was yet another attempt to sell a programming language as "just like English, except with a formal syntax" (hence "structured").

    0 讨论(0)
提交回复
热议问题