Question 201

View the Exhibit and examine the structure of the PRODUCTS table. Which two tasks require subqueries?
  • Question 202

    View the Exhibit and examine the structure of CUSTOMERS table.
    Using the CUSTOMERS table, you need to generate a report that shows an increase in the credit limit by 15% for all customers. Customers whose credit limit has not been entered should have the message "Not Available" displayed.
    Which SQL statement would produce the required result?
  • Question 203

    Which two are the minimal requirements for a self-join? (Choose two.)
  • Question 204

    Examine the SQL statement used to create the TRANSACTION table. (Choose the best answer.) SQL > CREATE TABLE transaction (trn_id char(2) primary key, Start_date date DEFAULT SYSDATE, End_date date NOT NULL); The value 'A1' does not exist for trn_id in this table.
    Which SQL statement successfully inserts a row into the table with the default value for START_DATE?
  • Question 205

    Examine the data in the ORD_ITEMS table:

    Evaluate this query:

    Which statement is true regarding the result?