READ Free Dumps For Oracle- 1z0-001
Question ID 8106 | The product table contains these columns. ID NUMBER(9) PK COST NUMBER(7,2) SALE_PRICE NUMBER(7,2) Management has asked you to calculate the net revenue per unit for each product, if the cost of each product is increased by 10% and the sale price of each product is increased by 25%. You issue this SQL statement. SELECT id, sale_price * 1.25 - cost * 1.10FROM product; Which conclusion can you draw from the results? |
Option A | Only the required results are displayed. |
Option B | The results provide more information than management requested. |
Option C | A function needs to be included in the SELECT statement to achieve the desired result. |
Option D | The order on the operations in the calculation needs to be changed to achieve the required results. |
Correct Answer | A |
Question ID 8107 | You want to create report to show different jobs in each department. You do not want to display any duplicate roles in the report. Which SELECT statement do you use to create the report? |
Option A | SELECT deptno, job FROM emp; |
Option B | SELECT no duplicate deptno, job FROM emp; |
Option C | SELECT distinct deptno, job FROM emp; |
Option D | CREATE report DISPLAY deptno, job FROM emp; |
Option E | SELECT distinct deptno, distinct job FROM emp; |
Correct Answer | C |