1z0-071 試験問題 91

Which three actions can you perform only with system privileges?
  • 1z0-071 試験問題 92

    Which three privileges can be restricted to a subset of columns in a table? (Choose three.)
  • 1z0-071 試験問題 93

    CUSTOMERS表には、データ型NUMBERのCUST_CREDIT_LIMIT列があります。
    正常に実行される 2 つのクエリはどれですか? (2つお選びください。)
  • 1z0-071 試験問題 94

    資料を参照して、EMPLOYEES テーブルの構造を調べてください。
    MANAGER_ID として 100 を持つすべての従業員とそのマネージャーを表示したいとします。出力を 2 つの列にしたいとします。最初の列にはマネージャーの LAST_NAME が含まれ、2 番目の列には従業員の LAST_NAME が含まれます。

    どの SQL ステートメントを実行しますか?
  • 1z0-071 試験問題 95

    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?