Which two statements are true regarding the types of table joins available in Oracle Database 10g?

Which two statements are true regarding the types of table joins available in Oracle Database 10g? (Choose two.)

Which two statements are true regarding the types of table joins available in Oracle Database 10g? (Choose two.)

A.
You can use the JOIN clause to join only two tables.

B.
You can explicitly provide the join condition with a NATURAL JOIN.

C.
You can use the USING clause to join tables on more than one column.

D.
You can use the ON clause to specify multiple conditions while joining tables.



Leave a Reply 8

Your email address will not be published. Required fields are marked *


user

user

select emp1.sal from emp1 join emp using( empno, deptno, job);

user

user

You cannot explicitly have join condition with NATURAL JOIN

Justyna

Justyna

C and D is correct

robotron6000

robotron6000

technically A is correct too. Although you can join multiple tables, each join operation only ever involves two tables.

Farooq

Farooq

Hi,

Today is my exam, Are these questions still valid?

mr_tienvu

mr_tienvu

I choose CD