1z0-071 試験問題 141

In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'.
Evaluate the following query:

What would be the outcome?
  • 1z0-071 試験問題 142

    Evaluate the following statement.
    INSERT ALL
    WHEN order_total < 10000 THEN
    INTO small_orders
    WHEN order_total > 10000 AND order_total < 20000 THEN
    INTO medium_orders
    WHEN order_total > 200000 AND order_total < 20000 THEN
    INTO large_orders
    SELECT order_id, order_total, customer_id
    FROM orders;
    Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
  • 1z0-071 試験問題 143

    翌月の第 1 月曜日の日付を表示するには、次のコマンドを実行します。
    SQL>SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'MON'),
    「dd」は「fmmonth rrrr」の最初の月曜日です」)
    デュアルから;
    結果は何ですか?
  • 1z0-071 試験問題 144

    You execute this command:
    TRUNCATE TABLE depts;
    Which two are true?
  • 1z0-071 試験問題 145

    For each employee in department 90 you want to display:
    1. their last name
    2. the number of complete weeks they have been employed
    The output must be sorted by the number of weeks, starting with the longest serving employee first.Which statement will accomplish this?