OCP-1Z0-051-題目解析-第21題
阿新 • • 發佈:2017-05-12
spa true div 一個 swe ron column examine ons
21. Examine the description of the EMP_DETAILS table given below:
name NULL TYPE
EMP_ID NOT NULL NUMBER
EMP_NAME NOT NULL VARCHAR2 (40)
EMP_IMAGE LONG
Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table?
關於long類型的字段有下面特點:
1: 在Group By 和Order By 字句中不能包括含有long類型的字段。
2: 使用子查詢建表的時候不復制含有long類型的字段。
3: 不能對long類型的字段定義約束條件
4: 一個表僅僅能含有一個long類型的字段
A: EMP_IMAGE字段能夠被包括在Group By 子句中(錯誤,EMP_IMAGE的類型是long)
B: EMP_IMAGE字段不能夠包括在Order By 子句中(正確)
C: 不能再向表中加入一個數據類型是long的新字段 (正確,表中已含有long類型的字段)
D: 能夠更新表,加入not null約束到EMP_IMAGE字段中(錯誤。long類型的字段不能加入不論什麽約束)
name NULL TYPE
EMP_ID NOT NULL NUMBER
EMP_NAME NOT NULL VARCHAR2 (40)
EMP_IMAGE LONG
Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table?
(Choose two.)
A. An EMP_IMAGE column can be included in the GROUP BY clause.
B. An EMP_IMAGE column cannot be included in the ORDER BY clause.
C. You cannot add a new column to the table with LONG as the data type.
D. You can alter the table to include the NOT NULL constraint on the EMP_IMAGE column.
關於long類型的字段有下面特點:
1: 在Group By 和Order By 字句中不能包括含有long類型的字段。
2: 使用子查詢建表的時候不復制含有long類型的字段。
3: 不能對long類型的字段定義約束條件
4: 一個表僅僅能含有一個long類型的字段
A: EMP_IMAGE字段能夠被包括在Group By 子句中(錯誤,EMP_IMAGE的類型是long)
B: EMP_IMAGE字段不能夠包括在Order By 子句中(正確)
C: 不能再向表中加入一個數據類型是long的新字段 (正確,表中已含有long類型的字段)
D: 能夠更新表,加入not null約束到EMP_IMAGE字段中(錯誤。long類型的字段不能加入不論什麽約束)
OCP-1Z0-051-題目解析-第21題