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

MANAGER is an existing role with no privileges or roles.
EMP is an existing role containing the CREATE TABLE privilege.
EMPLOYEES is an existing table in the HR schema.
Which two commands execute successfully?

解説: (GoShiken メンバーにのみ表示されます)
Examine the BRICKS table:

You write this query:
SELECT
FROM bricks b1 CROSS JOIN bricks b2
WHERE b1. Weight < b2. Weight:
How many rows will the query return?

解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about * TABLES views?

解説: (GoShiken メンバーにのみ表示されます)
You execute this command:
TRUNCATE TABLE dept;
Which two are true?

解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about dropping views?

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?

解説: (GoShiken メンバーにのみ表示されます)
Which three statements are true about views in an Oracle database?

正解:C,E,G 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Which two are true about constraints?

解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the PRODUCT_ DETAILS table:

Which two statements are true?

解説: (GoShiken メンバーにのみ表示されます)
Which two are true about global temporary tables?

解説: (GoShiken メンバーにのみ表示されます)
Which statement executes successfully?

解説: (GoShiken メンバーにのみ表示されます)
Examine this Statement which returns the name of each employee and their manager, SELECT e.last name AS emp,,m.last_name AS mgr FROM employees e JOIN managers m ON e.manager_ id = m. employee_ id ORDER BY emp; You want to extend the query to include employees with no manager. What must you add before JOIN to do this?

解説: (GoShiken メンバーにのみ表示されます)
Examine this description of the EMP table:

You execute this query:
SELECT deptno AS "departments", SUM (sal) AS "salary"
FROM emp
GROUP | BY 1
HAVING SUM (sal)> 3 000;
What is the result?

解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about single row functions?

解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the PRODUCT_STATUS table:

The STATUS column contains the values 'IN STOCK' or 'OUT OF STOCK' for each row Which two queries will execute successfully?

解説: (GoShiken メンバーにのみ表示されます)
Which two are SQL features?

解説: (GoShiken メンバーにのみ表示されます)
In your session, the NLS._DAE_FORMAT is DD- MM- YYYY.There are 86400 seconds in a day.Examine this result:
DATE
02-JAN-2020
Which statement returns this?

解説: (GoShiken メンバーにのみ表示されます)
You have been asked to create a table for a banking application.
One of the columns must meet three requirements:
1: Be stored in a format supporting date arithmetic without using conversion functions
2: Store a loan period of up to 10 years
3: Be used for calculating interest for the number of days the loan remains unpaid Which data type should you use?

解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the PRODUCTS table:

Which two statements execute without errors?

解説: (GoShiken メンバーにのみ表示されます)