최신Oracle Database SQL - 1z1-071무료샘플문제
문제1
Which three statements are true about time zones, date data types, and timestamp data types in an Oracle database? (Choose three.)
Which three statements are true about time zones, date data types, and timestamp data types in an Oracle database? (Choose three.)
정답: A,B,E
설명: (KoreaDumps 회원만 볼 수 있음)
문제2
Examine the structure of the PROGRAMS table:

Which two SQL statements would execute successfully?
Examine the structure of the PROGRAMS table:

Which two SQL statements would execute successfully?
정답: A,B
설명: (KoreaDumps 회원만 볼 수 있음)
문제3
Examine these statements:

Which two are true? (Choose two.)
Examine these statements:

Which two are true? (Choose two.)
정답: A,D
문제4
View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables. (Choose the best answer.)

You executed this UPDATE statement:

Which statement is true regarding the execution?
View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables. (Choose the best answer.)

You executed this UPDATE statement:

Which statement is true regarding the execution?
정답: A
문제5
View the Exhibit and examine the structure of the CUSTOMERS table.

You want to generate a report showing the last names and credit limits of all customers whose last names start with A, B, or C, and credit limit is below 10,000.
Evaluate the following two queries:
SQL> SELECT cust_last_name, cust_credit_limit FROM customers
WHERE (UPPER(cust_last_name) LIKE 'A%' OR
UPPER (cust_last_name) LIKE 'B%' OR UPPER (cust_last_name) LIKE 'C%')
AND cust_credit_limit < 10000;
SQL>SELECT cust_last_name, cust_credit_limit FROM customers
WHERE UPPER (cust_last_name) BETWEEN 'A' AND 'C'
AND cust_credit_limit < 10000;
Which statement is true regarding the execution of the above queries?
View the Exhibit and examine the structure of the CUSTOMERS table.

You want to generate a report showing the last names and credit limits of all customers whose last names start with A, B, or C, and credit limit is below 10,000.
Evaluate the following two queries:
SQL> SELECT cust_last_name, cust_credit_limit FROM customers
WHERE (UPPER(cust_last_name) LIKE 'A%' OR
UPPER (cust_last_name) LIKE 'B%' OR UPPER (cust_last_name) LIKE 'C%')
AND cust_credit_limit < 10000;
SQL>SELECT cust_last_name, cust_credit_limit FROM customers
WHERE UPPER (cust_last_name) BETWEEN 'A' AND 'C'
AND cust_credit_limit < 10000;
Which statement is true regarding the execution of the above queries?
정답: A
문제6
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?
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?
정답: D
문제7
Which three statements are true reading subquenes?
Which three statements are true reading subquenes?
정답: C,D,E
문제8
You want to display the date for the first Monday of the next month and issue the following command:

What is the outcome?
You want to display the date for the first Monday of the next month and issue the following command:

What is the outcome?
정답: C
문제9
Which two statements are true regarding the DELETE and TRUNCATE commands? (Choose two.)
Which two statements are true regarding the DELETE and TRUNCATE commands? (Choose two.)
정답: B,E
문제10
Examine the description of the PRODUCT_STATUStable:

The STATUScolumn contains the values 'IN STOCK'or 'OUT OF STOCK'for each row.
Which two queries will execute successfully? (Choose two.)
Examine the description of the PRODUCT_STATUStable:

The STATUScolumn contains the values 'IN STOCK'or 'OUT OF STOCK'for each row.
Which two queries will execute successfully? (Choose two.)
정답: C,D
문제11
Examine this SELECT statement and view the Exhibit to see its output:

SELECT constraints_name, constraints_type, search_condition, r_constraints_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS'; Which two statements are true about the output? (Choose two.)
Examine this SELECT statement and view the Exhibit to see its output:

SELECT constraints_name, constraints_type, search_condition, r_constraints_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS'; Which two statements are true about the output? (Choose two.)
정답: A,D
문제12
Which statement is true about transactions?
Which statement is true about transactions?
정답: D
설명: (KoreaDumps 회원만 볼 수 있음)
문제13
Evaluate the following statement:

Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
Evaluate the following statement:

Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
정답: D
설명: (KoreaDumps 회원만 볼 수 있음)
문제14
Examine this query:
SELECT 2 FROM DUAL d1 CROSS JOIN DUAL d2 CROSS JOIN DUAL d3;
What is returned upon execution?
Examine this query:
SELECT 2 FROM DUAL d1 CROSS JOIN DUAL d2 CROSS JOIN DUAL d3;
What is returned upon execution?
정답: E