大數(shù)據(jù)就業(yè)實(shí)戰(zhàn)培訓(xùn) Oracle就業(yè)實(shí)戰(zhàn)培訓(xùn)
071考試題庫之前是比較穩(wěn)定的,但隨著Oracle的調(diào)整,071考試不斷的增加新的考題,增加了考試的難度,所以我們專門收集整理了這些考試,并對這些考題進(jìn)行解析,希望可以對考生有幫助。
每周五晚8點(diǎn),我們有免費(fèi)的OCP解析公開課,地址:https://ke.qq.com/course/326223 OCP題庫交流群:1015267481,驗(yàn)證ocp
-------------------------------------------------------
071考試-第48題、choose the best answer
View the Exhibit and examine the description for the PRODUCTS and SALES table.
PROD_ID is a primary key in the PRODUCTS table and foreign key in the SALES table with ON DELETE CASCADE option. The SALES table contains data for the last three years. You want to remove all the rows from the PRODUCTS table for which no sale was done for the last three years.
Which is the valid DELETE statement?
A) DELETE
FROM products
WHERE prod id IN (SELECT prod_id
FROM sales
where time_id >= SYSDATE - 3*365 );
B) DELETE
FROM products
WHERE prod_id = (SELECT prod_id
FROM sales
WHERE time_id - 3*365 = SYSDATE );
C) DELETE
FROM products
WHERE prod_id = (SELECT prod_id
FROM sales
WHERE SYSDATE >= time_id - 3*365 );
D) DELETE
FROM products
WHERE prod_id IN (SELECT prod_id
FROM sales
where SYSDATE - 3*365 >= time_id);
Answer:A
(解析:time_id >= SYSDATE - 3*365 最近三年的時(shí)間
SYSDATE - 3*365 >= time_id 三年以前的時(shí)間
原來 051 的題
)