Question 71

Evaluate the following SQL commands:

The command to create a table fails. Identify the reason for the SQL statement failure.
  • Question 72

    View the Exhibit and examine, the description for the SALES and CHANNELS tables. (Choose the best answer.)

    You issued this SQL statement:
    INSERT INTO SALES VALUES (23, 2300, SYSDATE,
    (SELECT CAHNNEL_ID
    FROM CHANNELS
    WHERE CHANNEL_DESC='DIRECT SALES'), 12, 1, 500);
    Which statement is true regarding the result?
  • Question 73

    Examine this description of the PRODUCTS table:

    You successfully execute this command:

    Which two statements execute without errors?

  • Question 74

    Examine the structure of the BOOKS_TRANSACTIONStable:

    You want to display the member IDs, due date, and late fee as $2 for all transactions.
    Which SQL statement must you execute?
    SELECT member_id AS MEMBER_ID, due_date AS DUE_DATE, $2 AS LATE_FEE FROM
  • Question 75

    Examine this SELECT statement and view the Exhibit to see its output:

    SELECT constraints_name, constraints_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.)