Question 226

Which three statements are true?
  • Question 227

    Examine these statements:
    CREATE TABLE dept (
    deptno NUMBER PRIMARY KEY,
    diname VARCHAR2(10) ,
    mgr NUMBER ,
    CONSTRAINT dept_fkey FOREIGN KEY(mgr) REFERENCES emp (empno));
    CREATE TABLE emp (
    Empno NUMBER PRIMARY KEY,
    Ename VARCHAR2 (10) ,
    deptno NUMBER,
    CONSTRAINT emp_fkey FOREIGN KEY (deptno) REFERENCES dept (deptno) DISABLE); ALTER TABLE emp MODIFY CONSTRAINT emp_fkey ENABLE; Which two are true?
  • Question 228

    Which four statements are true about constraints on Oracle tables?
  • Question 229

    View the exhibit and examine the structure of the EMPLOYEEStable.

    You want to display all employees and their managers having 100 as the MANAGER_ID. You want the output in two columns: the first column would have the LAST_NAMEof the managers and the second column would have LAST_NAMEof the employees.
    Which SQL statement would you execute?
  • Question 230

    Examine the data in the INVOICES table:

    Examine the data in the CURRENCIES table:
    CURRENCY_CODE
    -------------
    JPY
    GPB
    CAD
    EUR
    USD
    Which query returns the currencies in CURRENCIES that are not present in INVOICES?