OCP-1Z0-051 第7题 ON和USING子句的用法与区别

一、原题
Which two statements are true regarding the USING and ON clauses in table joins? (Choose two.)
A. Both USING and ON clauses can be used for equijoins and nonequijoins.
B. A maximum of one pair of columns can be joined between two tables using the ON clause.
C. The ON clause can be used to join tables on columns that have different names but compatible data types.
D. The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause.


答案 CD

二、题目翻译
关于多表连接的USING和ON子句,下面哪两个选项是正确的?(选择两个)
A. USING和ON子句都可以用于等值连接和非等值连接。
B. 使用ON子句最大只能使用两个列连接两个表。
C. ON子句关联表的列名可以不同,但是数据类型要兼容。
D. 在包含ON或USING子句的SELECT语句中,WHERE子句可以做为补充的条件。

三、题目解析
A选项,不正确,USING子句只能用于等值连接, ON子句可用于等值和非等值连接,
B选项,不正确,ON子句可以连接多个列。
C选项,正确,ON子句中关联表的列名可以不同,也可以相同,但USING子句只能用在关联表的列名相同的情况下。
D选项,正确,不管是ON,还是USING子句,都要以在后面再添加where子句进行补充筛选。


你可能感兴趣的:(OCP-1Z0-051,USING,ON,多表关联查询,select,OCP-1Z0-051)