1z1-071試験無料問題集「Oracle Database SQL 認定」

Which two statements are true regarding indexes? (Choose two.)

Which task can be performed by using a single Data Manipulation Language (OML) statement?

View the Exhibit and examine the structure of the PRODUCTS table

Which two tasks would require subqueries? (Choose two.)

View and Exhibit and examine the structure and data in the INVOICE table.

Which two statements are true regarding data type conversion in query expressions? (Choose two.)

Which three statements are true about sequences in a single instance Oracle database? (Choose three.)

正解:B,C,D 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You need to calculate the number of days from 1st Jan 2007 till date: Dates are stored in the default format of dd-mm-rr.
Which two SQL statements would give the required output? (Choose two.)

Table HR.EMPLOYEEScontains a row where the EMPLOYEE_IDis 109.
User ALICEhas no privileges to access HR.EMPLOYEES.
User ALICEstarts a session.
User HRstarts a session and successfully executes these statements:
GRANT DELETE ON employees TO alice;
UPDATE employees SET salary = 24000 WHERE employee_id = 109;
In her existing session ALICEthen executes:
DELETE FROM hr.employees WHERE employee_id = 109;
What is the result?

View the Exhibit and examine the structure of ORDERS and ORDER_ITEMS tables.
ORDER__ID is the primary key in the ORDERS table. It is also the foreign key in the ORDER_ITEMS table wherein it is created with the ON DELETE CASCADE option.

Which DELETE statement would execute successfully?

Evaluate the following SQL statement:

Which statement is true regarding the outcome of the above query?

Examine the data in the EMPLOYEES table.

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

Examine the commands used to createDEPARTMENT_DETAILS andCOURSE_DETAILS:

You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
Which SQL statement must you use?

View the Exhibit and examine the structure of the ORDER_ITEMS and ORDERStables.

You are asked to retrieve the ORDER_ID,product_ID, and total price (UNIT_PRICEmultiplied by QUANTITY), where the total price is greater than 50,000.
You executed the following SQL statement:
SELECTprder_id, product_id, unit_price*quantity "Total Price"
FROM order_items
WHERE unit_price*quantity > 50000
NATURAL JOIN orders;
Which statement is true regarding the execution of the statement?