1z0-071 Exam Question 246

Examine this statement:

What is returned upon execution?
  • 1z0-071 Exam Question 247

    View the Exhibit and examine the structure in the DEPARTMENTS tables. (Choose two.)

    Examine this SQL statement:
    SELECT department_id "DEPT_ID", department_name, 'b' FROM
    departments
    WHERE departments_id=90
    UNION
    SELECT department_id, department_name DEPT_NAME, 'a' FROM
    departments
    WHERE department_id=10
    Which two ORDER BY clauses can be used to sort the output?
  • 1z0-071 Exam Question 248

    Examine the structure of the PROGRAMStable:

    Which two SQL statements would execute successfully?
    SELECT NVL(ADD_MONTHS(END_DATE,1)SYSDATE)
  • 1z0-071 Exam Question 249

    Evaluate the following query:
    SQL> SELECT TRUNC (ROUND(156.00, -1),-1)
    FROM DUAL;
    What would be the outcome?
  • 1z0-071 Exam Question 250

    Examine the data in the CUSTOMERS table:

    You want to list all cities that have more than one customer along with the customer details.
    Evaluate the following query:

    Which two JOIN options can be used in the blank in the above query to give the correct output? (Choose two.)