최신Oracle Database SQL - 1z0-071무료샘플문제
문제1
Which two statements are true regarding the COUNT function? (Choose two.)
Which two statements are true regarding the COUNT function? (Choose two.)
정답: A,B
설명: (KoreaDumps 회원만 볼 수 있음)
문제2
Which two are true about the precedence of operators and conditions? (Choose two.)
Which two are true about the precedence of operators and conditions? (Choose two.)
정답: C,E
문제3
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
문제4
View the Exhibit and examine the description for the SALES and CHANNELS tables. (Choose the best answer.)

You issued this SQL statement:

Which statement is true regarding the result?
View the Exhibit and examine the description for the SALES and CHANNELS tables. (Choose the best answer.)

You issued this SQL statement:

Which statement is true regarding the result?
정답: C
문제5
Which statement is true about Enterprise Manager (EM) express in Oracle Database 12c?
Which statement is true about Enterprise Manager (EM) express in Oracle Database 12c?
정답: C
설명: (KoreaDumps 회원만 볼 수 있음)
문제6
View the Exhibit and examine the structure of the SALES table.

The following query is written to retrieve all those product IDs from the SALES table that have more than 55000 sold and have been ordered more than 10 times.
SQL> SELECT prod_id
FROM sales
WHERE quantity_sold > 55000 and COUNT(*) > 10
GROUP BY prod_id
HAVING COUNT(*) > 10;
Which statement is true regarding this SQL statement?
View the Exhibit and examine the structure of the SALES table.

The following query is written to retrieve all those product IDs from the SALES table that have more than 55000 sold and have been ordered more than 10 times.
SQL> SELECT prod_id
FROM sales
WHERE quantity_sold > 55000 and COUNT(*) > 10
GROUP BY prod_id
HAVING COUNT(*) > 10;
Which statement is true regarding this SQL statement?
정답: C
문제7
Examine this query:
SELECT TRUNC(ROUND(156.00, -2), -1) FROM DUAL;
What is the result?
Examine this query:
SELECT TRUNC(ROUND(156.00, -2), -1) FROM DUAL;
What is the result?
정답: D
설명: (KoreaDumps 회원만 볼 수 있음)
문제8
Which three statements are true about inner and outer joins? (Choose three.)
Which three statements are true about inner and outer joins? (Choose three.)
정답: B,C,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제9
Examine the commands used to create DEPARTMENT_DETAILSand COURSE_DETAILS:

You want to generate a report that shows all course IDs irrespective of whether they have corresponding department IDs or not but no department IDs if they do not have any courses.
Which SQL statement must you use?
Examine the commands used to create DEPARTMENT_DETAILSand COURSE_DETAILS:

You want to generate a report that shows all course IDs irrespective of whether they have corresponding department IDs or not but no department IDs if they do not have any courses.
Which SQL statement must you use?
정답: A