READ Free Dumps For Oracle- 1z1-051
Question ID 4916 | The CUSTOMERS table has these columns: |
Option A | A. SELECT dear customer, customer_name, FROM customers; |
Option B | B. SELECT "Dear Customer", customer_name || ',' FROM customers; |
Option C | C. SELECT 'Dear Customer ' || customer_name ',' FROM customers; |
Option D | D. SELECT 'Dear Customer ' || customer_name || ',' FROM customers; |
Option E | E. SELECT "Dear Customer " || customer_name || "," FROM customers; |
Correct Answer | D |
Question ID 4917 | What is true about sequences? |
Option A | A. Once created, a sequence belongs to a specific schema. |
Option B | B. Once created, a sequence is linked to a specific table. |
Option C | C. Once created, a sequence is automatically available to all users. |
Option D | D. Only the DBA can control which sequence is used by a certain table. |
Option E | E. Once created, a sequence is automatically used in all INSERT and UPDATE statements. |
Correct Answer | A |