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

Examine the description of the CUSTOMERS table:

You want to display details of all customers who reside in cities starting with the letter D followed by at least two character.
Which query can be used?

解説: (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 メンバーにのみ表示されます)
Examine this partial command:
CREATE TABLE cust(
cust_id NUMBER(2),
credit_limit NUMBER(10)
ORGANIZATION EXTERNAL
Which two clauses are required for this command to execute successfully?

解説: (GoShiken メンバーにのみ表示されます)
SELECT *
FROM bricks,colors;
Which two statements are true?

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

Which statement will compute the total annual compensation tor each employee?

解説: (GoShiken メンバーにのみ表示されます)
You execute these commands:
SQL> DEFINE hiredate = '01-APR -2011';
SQL> SELECT employee_id, first_name, salary FROM employees WHERE hire date > &hiredate AND manager_id >&mgr_id; For which substitution variables will you be prompted?

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

正解:A,B,F 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about INTERVAL data types

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

正解:C,E,F 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Which three statements are true about multiple row subqueries?

正解:A,C,D 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the EMPLOYEES table:

Which two queries return rows for employees whose manager works in a different department?

解説: (GoShiken メンバーにのみ表示されます)
Which statements is true about using functions in WHERE and HAVING?

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

Which two queries return rows where QUANTITY is a multiple of ten?

解説: (GoShiken メンバーにのみ表示されます)
Which two statements are true about selecting related rows from two tables based on entity relationship diagram (ERD)?

解説: (GoShiken メンバーにのみ表示されます)
Examine these statements which execute successfully:
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY HH24 MI: SS'
ALTER SESSION SET TIME_ ZONE = '-5:00';
SELECT DBTIMEZONE, SYSDATE FROM DUAL
Examine the result:

If LOCALTIMESTAMP was selected at the same time what would it return?

解説: (GoShiken メンバーにのみ表示されます)
Examine this SQL statement:
DELETE FROM employees e
WHERE EXISTS
(SELECT'dummy'
FROM emp_history
WHERE employee_id = e.employee_id)
Which two are true?

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

正解:A,B,G 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Examine the description of the BOOKS_TRANSACTIONS table:

Examine this partial SQL statement:
SELECT * FROM books_transactions
Which two WHERE conditions give the same result?

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