Question 176

View the Exhibit and examine the details of the PRODUCT_INFORMATION table. (Choose two.) Evaluate this SQL statement:
SELECT TO_CHAR (list_price, '$9,999')
From product_information;
Which two statements are true regarding the output?
  • Question 177

    Examine the description of the CUSTOMERStable:

    You want to display details of all customers who reside in cities starting with the letter D followed by at least two characters.
    Which query can be used?
    SELECT * FROM customers WHERE city = 'D_%';
  • Question 178

    View the Exhibit and examine the details of the PRODUCT_INFORMATION table. (Choose two.)

    Evaluate this SQL statement:
    SELECT TO_CHAR(list_price,'$9,999')
    From product_information;
    Which two statements are true regarding the output? (Choose two.)
  • Question 179

    Which three statements are true about GLOBAL TEMPORARY TABLES?
  • Question 180

    View the Exhibit and examine the structure of the PORDUCT_INFORMATION table.
    (Choose the best answer.)

    PRODUCT_ID column is the primary key.
    You create an index using this command:
    SQL > CREATE INDEX upper_name_idx
    ON product_information(UPPER(product_name));
    No other indexes exist on the PRODUCT_INFORMATION table.
    Which query would use the UPPER_NAME_IDX index?