Question 151

Examine the description of the CUSTOMERS table:
Which three statements will do an implicit conversion?
  • Question 152

    Examine the structure of the two tables.

    Which two queries execute successfully? (Choose two.)
  • Question 153

    .No user-defined locks are used in your database.
    Which three are true about Transaction Control Language (TCL)?
  • Question 154

    View the Exhibit and examine the structure of the ORDERS table. The ORDER_ID column is the PRIMARY KEY in the ORDERS table.

    Evaluate the following CREATE TABLE command:
    CREATE TABLE new_orders(ord_id, ord_date DEFAULT SYSDATE, cus_id)
    AS
    SELECT order_id.order_date,customer_id
    FROM orders;
    Which statement is true regarding the above command?
  • Question 155

    View the Exhibit and examine the data in the employees table.

    You want to generate a report showing the total compensation paid to each employee to date.
    You issue the following query:

    What is the outcome?