최신Oracle Database SQL - 1z1-071무료샘플문제
문제1
Examine the description of the CUSTONERS table:

CUSTNO is the PRIMARY KEY.
You must determine if any customers' details have been entered more than once using a different CUSTNO, by listing all duplicate names.
Which two methods can you use to get the required result?
Examine the description of the CUSTONERS table:

CUSTNO is the PRIMARY KEY.
You must determine if any customers' details have been entered more than once using a different CUSTNO, by listing all duplicate names.
Which two methods can you use to get the required result?
정답: C,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제2
You create a table by using this command:
CREATE TABLE rate_list (rate NUMBER(6,2));
Which two are true about executing statements?
You create a table by using this command:
CREATE TABLE rate_list (rate NUMBER(6,2));
Which two are true about executing statements?
정답: B,E
설명: (KoreaDumps 회원만 볼 수 있음)
문제3
Examine this statement:
SELECT1 AS id,' John' AS first_name, NULL AS commission FROM dual
INTERSECT
SELECT 1,'John' null FROM dual ORDER BY 3;
What is returned upon execution?[
Examine this statement:
SELECT1 AS id,' John' AS first_name, NULL AS commission FROM dual
INTERSECT
SELECT 1,'John' null FROM dual ORDER BY 3;
What is returned upon execution?[
정답: C
설명: (KoreaDumps 회원만 볼 수 있음)
문제4
Which two are true about queries using set operators such as UNION?
Which two are true about queries using set operators such as UNION?
정답: A,B
설명: (KoreaDumps 회원만 볼 수 있음)
문제5
Which two actions can you perform with object privileges?
Which two actions can you perform with object privileges?
정답: B,C
설명: (KoreaDumps 회원만 볼 수 있음)
문제6
You execute this command:
TRUNCATE TABLE dept;
Which two are true?
You execute this command:
TRUNCATE TABLE dept;
Which two are true?
정답: D,F
설명: (KoreaDumps 회원만 볼 수 있음)
문제7
Which two are true about the WITH GRANT OPTION clause?
Which two are true about the WITH GRANT OPTION clause?
정답: A,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제8
Examine this partial command:

Which two clauses are required for this command to execute successfully?
Examine this partial command:

Which two clauses are required for this command to execute successfully?
정답: B,C
설명: (KoreaDumps 회원만 볼 수 있음)
문제9
Examine the description of the SALES table:

The SALES table has 5,000 rows.
Examine this statement:
CREATE TABLE sales1 (prod id, cust_id, quantity_sold, price)
AS
SELECT product_id, customer_id, quantity_sold, price
FROM sales
WHERE 1=1
Which two statements are true?
Examine the description of the SALES table:

The SALES table has 5,000 rows.
Examine this statement:
CREATE TABLE sales1 (prod id, cust_id, quantity_sold, price)
AS
SELECT product_id, customer_id, quantity_sold, price
FROM sales
WHERE 1=1
Which two statements are true?
정답: A,C
설명: (KoreaDumps 회원만 볼 수 있음)
문제10
Which three statements are true about single row functions?
Which three statements are true about single row functions?
정답: A,D,F
설명: (KoreaDumps 회원만 볼 수 있음)
문제11
Which two are true about the data dictionary?
Which two are true about the data dictionary?
정답: C,E
설명: (KoreaDumps 회원만 볼 수 있음)
문제12
Which two statements are true about selecting related rows from two tables based on entity relationship diagram (ERD)?
Which two statements are true about selecting related rows from two tables based on entity relationship diagram (ERD)?
정답: A,D
설명: (KoreaDumps 회원만 볼 수 있음)
문제13
Which two are true about constraints?
Which two are true about constraints?
정답: A,C
설명: (KoreaDumps 회원만 볼 수 있음)
문제14
You execute these commands successfully:
CREATE GLOBAL TEMPORARY TABLE invoices _ gtt
( customer id INTEGER,
invoice_ total NUMBER (10, 2)
) ON COMMIT PRESERVE ROWS;
INSERT INTO invoices_ gtt VALUES (1, 100);
COMMIT;
Which two are true?
You execute these commands successfully:
CREATE GLOBAL TEMPORARY TABLE invoices _ gtt
( customer id INTEGER,
invoice_ total NUMBER (10, 2)
) ON COMMIT PRESERVE ROWS;
INSERT INTO invoices_ gtt VALUES (1, 100);
COMMIT;
Which two are true?
정답: D,E
설명: (KoreaDumps 회원만 볼 수 있음)
문제15
Which two statements are true about the WHERE and HAVING clauses in a SELECT statement?
Which two statements are true about the WHERE and HAVING clauses in a SELECT statement?
정답: C,D
설명: (KoreaDumps 회원만 볼 수 있음)