大數據就業實戰培訓 Oracle就業實戰培訓
071考試題庫之前是比較穩定的,但隨著Oracle的調整,071考試不斷的增加新的考題,增加了考試的難度,所以我們專門收集整理了這些考試,并對這些考題進行解析,希望可以對考生有幫助。
每周五晚8點,我們有免費的OCP解析公開課,地址:https://ke.qq.com/course/326223 OCP題庫交流群:1015267481,驗證ocp
-------------------------------------------------------
071考試-第59題、choose two:
Which two statements are true regarding the USING and ON clauses in table joins?
A) The ON clause can be used to join tables on columns that have different names but compatible data types.
B) A maximum of one pair of columns can be joined between two tables using the ON clause.
C) Both USING and ON clauses can be used for equijoins and nonequijoins.
D) The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause.
Answer:AD
(解析:D 答案正確,不管是 ON,還是 USING 子句,都要以在后面再添加 where 子句進行補充篩選;B 答案錯誤,ON 子句可以連接多個列;
using 不能用于不等連接
using 連接的字段可以 data type 不等,但是名字要相等
using 跟 natural join 是相互排斥的
using 的字段是不能夠再起別名
on 連接的字段 data type 要一致,名字可以不一樣
where 條件和 on 條件是分開處理的
)