Exam Name: | Oracle Database 12c SQL | ||
Exam Code: | 1z0-071 Dumps | ||
Vendor: | Oracle | Certification: | Oracle PL |
Questions: | 326 Q&A's | Shared By: | andrei |
Which four statements are true regarding primary and foreign key constraints and the effect they can have on table data?
Examine this partial command:
CREATE TABLE cust(
cust_id NUMBER(2),
credit_limit NUMBER(10)
ORGANIZATION EXTERNAL
Which two clauses are required for this command to execute successfully?
You need to allow user ANDREW to:
1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table.
2. GRANT tha permission to other users.
Which statement will do this?
Examine this Statement which returns the name of each employee and their manager,
SELECT e.last name AS emp,,m.last_name AS mgr
FROM employees e JOIN managers m
ON e.manager_ id = m. employee_ id ORDER BY emp;
You want to extend the query to include employees with no manager. What must you add before JOIN to do this?