READ Free Dumps For Oracle- 1z1-051
Question ID 4808 | You created an ORDERS table with the following description: |
Option A | A. The primary key constraint can be created only a the time of table creation |
Option B | B. You cannot add a primary key constraint if data exists in the column |
Option C | C. You cannot have two constraints on one column |
Option D | D. You can add the primary key constraint even if data exists, provided that there are no duplicate values |
Correct Answer | D |
Question ID 4809 | Examine the structure of the INVOICE table: |
Option A | A. SELECT inv_no,NVL2(inv_amt,inv_date,'Not Available') FROM invoice; |
Option B | B. SELECT inv_ no,NVL2(inv_date,'Pending','Incomplete') |
Option C | C. SELECT inv_ no,NVL2(inv_date,inv_amt*.25,'Not Available') FROM invoice; |
Option D | D. SELECT inv_ no,NVL2(inv_date,sysdate-inv,sysdate) FROM invoice; |
Correct Answer | B,D |