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

Which three are true about system and object privileges

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

解説: (GoShiken メンバーにのみ表示されます)
Which three statements are true about performing Data Manipulation Language (DML) operations on a view In an Oracle Database?

正解:B,D,E 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the PROMOTIONS TABLE:
You want to display the unique is promotion costs in each promotion category.
Which two queries can be used?

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

Which two statements are true?

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

Which query is valid?

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

You need to display last names and credit limits of all customers whose last name starts with A or B In lower or upper case, and whose credit limit is below 1000.
Examine this partial query:
SELECT cust_last_nare, cust_credit_limit FROM customers
Which two WHERE conditions give the required result?

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

Which two queries return the highest salary in the table?

解説: (GoShiken メンバーにのみ表示されます)
Which two are true about the precedence of opertors and condtions

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

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

For Customers whose income level has a value, you want to display the first name and due amount as 5% of their credit limit. Customers whose due amount is null should not be displayed.
Which query should be used?

解説: (GoShiken メンバーにのみ表示されます)
You have the privileges to create any type of synonym.
Which stalement will create a synonym called EMP for the HCM.EMPLOYEE_RECORDS table that is accesible to all users?

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

Examine the data in the INVOICES table:

Examine this query:
SELECT order_ id, order_ date FROM orders
INTERSECT
SELECT order_ 1d, order_ date FROM invoices;
Which two rows will it return?

解説: (GoShiken メンバーにのみ表示されます)
Which two statements will return the names of the three employees with the lowest salaries?

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

正解:B,F,G 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Examine these two queries and their output:
SELECT deptno, dname FROM dept;

SELECT ename, job, deptno FROM emp ORDER BY deptno;

Now examine this query:
SELECT ename, dname
FROM emp CROSS JOIN dept WHERE job = 'MANAGER'
AND dept.deptno IN (10, 20) ;

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

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