What is the difference between sql statements and clause
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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
回答2:
A statement is the query and the clause is the condition of the statement.