OCP-1Z0-051-V9 02-9題
阿新 • • 發佈:2018-11-16
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
9. Which statement is true regarding the INTERSECT operator?
A. It ignores 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
答案解析:
參考:http://blog.csdn.net/rlhua/article/details/12883007
A. 它忽略空值,錯誤,不會忽略空值 B. 交換交集表的前後順序可以改變交集結果,錯誤,不會改變結果 C. 所有SELECT查詢語句中的列的名字必須相同。錯誤,列名可以不必相同 D. 對於所有SELECT查詢語句,列的數量和資料型別必須相同。使用INTERSECT運算子可以返回多個查詢的所有共同行。 準則 • 在查詢中使用的所有SELECT語句中,由查詢中的SELECT語句選定的列數和列的資料型別必須相同。不過,列名不必相同。 • 使相交的表按反方向排序不會更改結果。 • INTERSECT不會忽略NULL值。