Question 31

Examine the structure of the BOOKS_TRANSACTIONS table:

Examine the SQL statement:

Which statement is true about the outcome?
  • Question 32

    Which three privileges can be restricted to a subset of columns in a table? (Choose three.)
  • Question 33

    Which two statements are true regarding roles? (Choose two.)
  • Question 34

    Which three are true about scalar subquery expressions?
  • Question 35

    View the exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTS and TIMES tables.

    The PROD_ID column is the foreign key in the SALES table referencing the PRODUCTS table.
    The CUST_ID and TIME_ID columns are also foreign keys in the SALES table referencing the CUSTOMERS and TIMES tables, respectively.
    Examine this command:
    CREATE TABLE new_sales (prod_id, cust_id, order_date DEFAULT SYSDATE)
    AS
    SELECT prod_id, cust_id, time_id
    FROM sales;
    Which statement is true?