Question 286

Examine the structure of the BOOKS_TRANSACTIONStable.

You want to update this table such that BOOK_IDis set to 'INVALID'for all rows where no MEMBER_ID has been entered.
Examine this partial SQL statement:

Which condition must be used in the WHEREclause to perform the required update?
  • Question 287

    View the Exhibit and examine the structure of CUSTOMERStable.

    Evaluate the following query:

    Which statement is true regarding the above query?
  • Question 288

    You execute this command:

    Which two are true? (Choose two.)
  • Question 289

    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? (Choose two.)
  • Question 290

    Evaluate the following SELECTstatement and view the exhibit to examine its output:
    SELECT constraint_name, constraint_type, search_condition, r_constraint_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS';

    Which two statements are true about the output? (Choose two.)