1z0-071 Exam Question 136

Examine the structure and data in the PRICE_LIST table:

You plan to give a discount of 25% on the product price and need to display the discount amount in the same format as the PROD_PRICE.
Which SQL statement would give the required result?
  • 1z0-071 Exam Question 137

    Examine the types and examples of relationship that follow:
    1 One-to-one a) teacher to Student
    2 One-to-many b) Employees to Manager
    3 Many-to-one c) Person to SSN
    4 Many-to-many d) Customers to Products
    Which option indicates correctly matched relationships?
  • 1z0-071 Exam Question 138

    Examine this statement:

    Which two things must be changed for it to execute successfully?
  • 1z0-071 Exam Question 139

    You want to write a query that prompts for two column names and the WHERE condition each time it is executed in a session but only prompts for the table name the first time it is executed.
    The variables used in your query are never undefined in your session?
    Which query can be used?
  • 1z0-071 Exam Question 140

    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?