ocp考试资料群:569933648 验证码:ocp OCP 12c 19c考试题库解析与资料群:钉钉群号:35277291
全部博文(487)
发布时间:2019-02-21 10:22:36
26.choose twoExamine the structure of the PRODUCTS table.Which two statements are true?A) EXPIRY_DATE always stores date and time in character formatB) PRICE can store a maximum of eight digits and two decimals.C) PRODUCT_PIC can store only videos.D) PRODUCT_NAME always stores .........【阅读全文】
发布时间:2019-02-21 09:44:50
25. choose the best answerEvaluate the following SQL statement:ALTER TABLE hr.empSET UNUSED (mgr_id);Which statement is true regarding the effect of the above SQL statement?A) Any views created on the EMP table that include the MGR_ID column would be automatically modified and remain .........【阅读全文】
发布时间:2019-02-20 17:27:37
24. choose the best answerIn the EMPLOYEES table there are 1000 rows and employees are working in the company for more than 10 years.Evaluate the following SQL statement:SQL> UPDATE employeesSET salary = NVL(salary,0) + NVL(comm,0),comm = NVL(comm,0)WHERE hire_date < SYSDATE - 600;.........【阅读全文】
发布时间:2019-02-20 16:14:50
23.choose the best answerView the Exhibits and examine PRODUCTS and SALES tables.You issue the following query to display product name and the number of times theproduct has been sold:SQL>SELECT p.prod_name, i.item_cntFROM (SELECT prod id, COUNT(*) item_cntFROM sales GROUP BY prod_.........【阅读全文】
发布时间:2019-02-20 13:53:12
View the Exhibit and examine the description of SALES and PROMOTIONS tables. A) DELETEWHERE promo_id = (SELECT promo_idWHERE promo_name = 'blowout sale')FROM promotions FROM salesFROM promotionsAND promo_id = (SELECT promo_idWHERE promo_name = 'eve.........【阅读全文】