【OCP 071】最新OCP 12c題庫考試原題(071-59題)
最新學訊:近期OCP認證正在報名中,因考試人員較多請盡快報名獲取最近考試時間,報名費用請聯系在線老師,甲骨文官方認證,報名從速!
我要咨詢2018年OCP 11g考試原題解析已經講解30多次課,500多道考試原題,最終達到98%以上的考題覆蓋度及95%以上的考試通過率。
2019年OCP 11g將升級到12c,OCP 12c考試解析免費公開課也已經開始了,歡迎大家收看!
OCP解析公開課時間:【每周五晚8點】
OCP解析公開課地址:http://ke.qq.com/course/326223
OCP解析群資料分享:1015267481 驗證:ocp
另外,除了OCP公開課,OCM題庫直播也同步進行中,OCM最新題庫大爆料-【每周四晚8點】,【微信群直播】,可以聯系咨詢老師進群參與
-------------------------------------------------------
59、(16-8)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 條件是分開處理的
)