Question 16

Examine these commands:

Which two statements are true about the sqiidr execution?
  • Question 17

    The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE.
    NLS_DATE_FORMAT is set to DD-MON-RR.
    Which two are true about data type conversions involving these columns in query expressions? (Choose two.)
  • Question 18

    The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type DATE.
    You want to display the date of the first Monday after the completion of six months since hiring.
    The NLS_TERRITORY parameter is set to AMERICA in the session and, therefore, Sunday is the first day on the week.
    Which query can be used?
  • Question 19

    Examine the description of the BOOKS table:

    The table has 100 rows.
    Examine this sequence of statements issued in a new session:
    INSERT INTO books VALUES ('ADV112', 'Adventures of Tom Sawyer', NULL, NULL); SAVEPOINT a; DELETE FROM books; ROLLBACK TO SAVEPOINT a; ROLLBACK; Which two statements are true? (Choose two.)
  • Question 20

    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?