Difference between sql statements and clause

What is the difference between sql statements and sentence

+5
source share
2 answers

The following statement:

SELECT foo FROM bar JOIN quux WHERE x = y;

consists of the following articles:

  • WHERE x = y
  • SELECT foo
  • FROM bar
  • Join quux
+8
source

The operator is the request, and the offer is the condition of the operator.

0
source

All Articles