READ Free Dumps For Oracle- 1z0-001
Question ID 1627 | The structure of the DEPT table is as follows: |
Option A | A. DBMS_OUTPUT.PUT_ LINE(dept_rec.name); |
Option B | B. DBMS_OUTPUT.PUT_ LINE(dname); |
Option C | C. DBMS_OUTPUT.PUT_ LINE(dept_rec.dname); |
Option D | D. DBMS_OUTPUT.PUT_ LINE(name); |
Option E | E. DBMS_OUTPUT.PUT_ LINE(dept_rec(name)); |
Correct Answer | A |
Question ID 1628 | You need to create a report to display the ship date and order totals of your ORDER table. If the order has not been shipped, your report must display 'Not Shipped'. If the total is not available, your report must display 'Not Available'. |
Option A | A. SELECT ordid, NVL(shipdate, 'Not Shipped'), NVL(total,'Not Available') |
Option B | B. SELECT ordid, shipdate "Not Shipped", total "Not Available" |
Option C | C. SELECT ordid, NVL(TO_CHAR(shipdate), 'Not Shipped'), NVL(TO_CHAR(total),'Not Available') |
Option D | D. SELECT ordid,TO_CHAR(shipdate, 'Not Shipped'), TO_CHAR(total,'Not Available') |
Correct Answer | C |