1z1-061試験無料問題集「Oracle Database 12c: SQL Fundamentals 認定」

Examine the types and examples of relationships that follow:
1 . One-to-one a) Teacher to students
2 . One-to-many b) Employees to Manager
3 . Many-to-one c) Person to SSN
4 . Many-to-many d) Customers to products
Which option indicates the correctly matched relationships?

Evaluate the following SQL statements:
Exhibit:

Which is the correct output of the above query?

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

Evaluate the query statement:

What would be the outcome of the above statement?

Which statement describes the ROWID data type?

解説: (GoShiken メンバーにのみ表示されます)
The ORDERS TABLE belongs to the user OE. OE has granted the SELECT privilege on the ORDERS table to the user HR.
Which statement would create a synonym ORD so that HR can execute the following query successfully?
SELECT * FROM ord;

解説: (GoShiken メンバーにのみ表示されます)
View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables.

There is only one customer with the CUST_LAST_NAME column having value Roberts.
Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600?

Which statements are correct regarding indexes? (Choose all that apply.)

正解:A,B,D 解答を投票する
Evaluate this SQL statement:
SELECT e.emp_name, d.dept_name
FROM employees e
JOIN departments d
USING (department_id)
WHERE d.department_id NOT IN (10, 40)
ORDER BY dept_name;
The statement fails when executed. Which change fixes the error?

解説: (GoShiken メンバーにのみ表示されます)
View the Exhibit and examine the structure of the PROMOTIONS, SALES, and CUSTOMER tables.
You need to generate a report showing the promo name along with the customer name for all products that were sold during their promo campaign and before 30th October 2007.
You issue the following query:

Which statement is true regarding the above query?

View the exhibit and examine the description for the SALES and CHANNELS tables.

You issued the following SQL statement to insert a row in the SALES table:
INSERT INTO sales VALUES
(23, 2300, SYSDATE, (SELECT channel_id
FROM channels
WHERE channel_desc='Direct Sales'), 12, 1, 500);
Which statement is true regarding the execution of the above statement?

Evaluate the following query:
SQL> SELECT TRUNC(ROUND(156.00, -1), -1)
FROM DUAL;
What would be the outcome?

解説: (GoShiken メンバーにのみ表示されます)
The PRODUCTS table has the following structure:

Evaluate the following two SQL statements:

Which statement is true regarding the outcome?

解説: (GoShiken メンバーにのみ表示されます)
Which three tasks can be performed using SQL functions built into Oracle Database?

正解:A,C,D 解答を投票する
Which is an iSQL*Plus command?

解説: (GoShiken メンバーにのみ表示されます)
Which statement is true regarding synonyms?

Examine the data in the ORD_ITEMS table:
ORD_NO ITEM_NO QTY
-------------------------------------------
1 111 10
1 222 20
1 333 30
2 333 30
2 444 40
3 111 40
Evaluate the following query:
SQL>SELECT item_no, AVG(qty)
FROM ord_items
HAVING AVG(qty) > MIN(qty) * 2
GROUP BY item_no;
Which statement is true regarding the outcome of the above query?