1z0-071 Exam Question 36

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?
  • 1z0-071 Exam Question 37

    You must write a query that prompts users for column names and conditions every time it is executed.
    The user must be prompted only once for the table name.
    Which statement achieves those objectives?
  • 1z0-071 Exam Question 38

    Evaluate the following SQL statement:

    Which statement is true regarding the outcome of the above query?
  • 1z0-071 Exam Question 39

    Examine the structure of the SALES table. (Choose two.)

    Examine this statement:
    SQL > CREATE TABLE sales1 (prod_id, cust_id, quantity_sold, price)
    AS
    SELECT product_id, customer_id, quantity_sold, price
    FROM sales
    WHERE 1 = 2;
    Which two statements are true about the SALES1 table?
  • 1z0-071 Exam Question 40

    Examine the data in the ENPLOYEES table:

    Which statement will compute the total annual compensation tor each employee?