大數據就業實戰培訓 Oracle就業實戰培訓
071考試題庫之前是比較穩定的,但隨著Oracle的調整,071考試不斷的增加新的考題,增加了考試的難度,所以我們專門收集整理了這些考試,并對這些考題進行解析,希望可以對考生有幫助。
每周五晚8點,我們有免費的OCP解析公開課,地址:https://ke.qq.com/course/326223 OCP題庫交流群:1015267481,驗證ocp
-------------------------------------------------------
071考試-第41題、choose two
View the Exhibit and examine the structure of the ORDERS table.
The columns ORDER_MODE and ORDER_TOTAL have the default values 'direct' and 0 respectively.
Which two INSERT statements are valid? (Choose two.)
A) INSERT INTO
(SELECT order_id,order_date,customer_id FROM orders)
VALUES (1,'09-mar-2007', 101);
B) INSERT INTO orders
(order_id,order_date,order_mode,
customer_id,order_total)
VALUES(1,TO_DATE(NULL), 'online', 101, NULL);
C) INSERT INTO orders
VALUES (1, '09-mar-2007', 'online','',1000);
D) INSERT INTO orders
(order_id,order_date,order_mode,order_total)
VALUES (1,'10-mar-2007','online',1000);
E) INSERT INTO orders
VALUES (1,'09-mar-2007', DEFAULT, 101, DEFAULT);
Answer:AE
(解析:驗證過,考點是考如何插入默認值的列,實際插入過程中可以忽略列,或者用 default 關鍵字顯示
插入。D 語法沒有錯誤,但是 customer_id 是非空約束,所以無法插入)