1z0-071 試験問題 81

指定された順序で実行される次の SQL ステートメントを調べてください。

外部キー EMP_MGR_FK のステータスはどうなりますか?
  • 1z0-071 試験問題 82

    View the Exhibit and examine the data in the PRODUCTS table. (Choose the best answer.)

    You must display product names from the PRODUCTS table that belong to the
    'Software/other' category with minimum prices as either $2000 or $4000 and with no unit of measure.
    You issue this query:
    SQL > SELECT prod_name, prod_category, prod_min_price FROM products
    Where prod_category LIKE '%Other%' AND (prod_min_price = 2000 OR prod_min_price
    4000) AND prod_unit_of_measure <> ' ';
    Which statement is true?
  • 1z0-071 試験問題 83

    View the Exhibit and examine the structure of the SALES and PRODUCTS tables. (Choose two.)

    In the SALES table, PROD_ID is the foreign key referencing PROD_ID in the PRODUCTS table. You must list each product ID and the number of times it has been sold.
    Examine this query which is missing a JOIN operator:

    Which two JOIN operations can be used to obtain the required output? (Choose two.)
  • 1z0-071 試験問題 84

    View the Exhibit and examine the structure of the CUSTOMERS table.

    Using the CUSTOMERS table, you must generate a report that displays a credit limit increase of 15% for all customers.
    Customers with no credit limit should have "Not Available" displayed.
    Which SQL statement would produce the required result?
  • 1z0-071 試験問題 85

    Which three are true about privileges and roles?