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

Which two statements are true about an Oracle database?

解説: (GoShiken メンバーにのみ表示されます)
Which two are true about the USING clause when joining tables?

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

Examine the data in the BRICKS table:

Which two queries return all the rows from COLORS?

解説: (GoShiken メンバーにのみ表示されます)
Examine this list of requirements for a sequence:
1. Name:EMP_SEQ
2. First value returned:1
3. Duplicates are never permitted.
4. Provide values to be inserted into the EMPLOYEES.EMPLOYEE_ID COLUMN.
5. Reduce the chances of gaps in the values.
Which two statements will satisfy these requirements?

解説: (GoShiken メンバーにのみ表示されます)
Which two tasks require subqueries?

解説: (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 the description products table:

Examine the description of the new_projects table;

Which two queries execute successfully?

解説: (GoShiken メンバーにのみ表示されます)
Which statement will return a comma-separated list of employee names in alphabetical order for each department in the EMP table?

解説: (GoShiken メンバーにのみ表示されます)
Examine these statements executed in a single Oracle session:
CREATE TABLE product (pcode NUMBER(2),pname VARCHAR2(20));
INSERT INTO product VALUES(1,'pen');
INSERT INTO product VALUES (2,'pencil');
INSERT INTO product VALUES(3,'fountain pen');
SAVEPOINT a;
UPDATE product SET pcode=10 WHERE pcode =1;
COMMIT;
DELETE FROM product WHERE pcode =2;
SAVEPOINT b;
UPDATE product SET pcode=30 WHERE pcode =3;
SAVEPOINT c;
DELETE FROM product WHERE pcode =10;
ROLLBACK TO SAVEPOINT b;
COMMIT;
Which three statements are true?

正解:A,D,E 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Which three statements are true about inner and outer joins?

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

解説: (GoShiken メンバーにのみ表示されます)
Examine this SQL statement:
SELECT cust_id, cust_last_name "Last Name
FROM customers
WHERE countryid=10
UNION
SELECT custid CUSTNO, cust_last_name
FROM customers
WHERE countryid=30
Identify three ORDER BY clauses, any one of which can complete the query successfully.

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

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

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