Difference between sql statements and clause

后端 未结 2 695
一向
一向 2021-02-19 17:41

What is the difference between sql statements and clause

相关标签:
2条回答
  • 2021-02-19 18:20

    A statement is the query and the clause is the condition of the statement.

    0 讨论(0)
  • 2021-02-19 18:24

    The following statement:

    SELECT foo FROM bar JOIN quux WHERE x = y;
    

    is made up of the following clauses:

    • WHERE x = y
    • SELECT foo
    • FROM bar
    • JOIN quux
    0 讨论(0)
提交回复
热议问题