OCP-1Z0-051 第九題
02-12
OCP-1Z0-051 第九題 集合操作INTERSECT注意事項
原題
Which statment is true regarding the INTERSECT operator?A.It ignore NULL values.B.Reversing the order of the intersected tables alters the result.
C.The names of columns in all SELECT statements must be identical.D.The number of columns and data types must be identical for all SELECT statements in the query.ANSWER:D翻譯:
關於INTERSECT操作符,以下說法正確的是:A.它忽略空值B.交換交集表的前後順序可以改變交集結果C.所有select查詢語句中的列名必須相同D.所有select語句中列的數量和數據類型必須相同
解析:A不正確,INTERSECT不會忽略空值B不正確,表的順序改變,不會影響結果C不正確,列名不需要相同,只要列的數量和數據類型一致就可以了。11.2官方文檔:
The UNION [ALL], INTERSECT, MINUS OperatorsINTERSECT,找出兩張表中相同的數據。MINUS,找出兩張表中不同的數據推薦閱讀: