Which two statements are true regarding the USING clause in table joins?

Which two statements are true regarding the USING clause in table joins?(Choose two.)
A. It can be used to join a maximum of three tables.
B. It can be used to restrict the number of columns used in a NATURAL join.
C. It can be used to access data from tables through equijoins as well as nonequijoins.
D. It can be used to join tables that have columns with the same name and compatible data types.

Download Printable PDF. VALID exam to help you PASS.

2 thoughts on “Which two statements are true regarding the USING clause in table joins?

  1. CD correct answers

    B is incorrect. NATURAL JOIN and USING are mutually exclusive. The whole sense of using NATURAL JOIN is to allow Oracle to find fields with same name and type. USING is designed to specify which fields must be used for JOIN. So these two conditions are mutually exclusive

    2
    2
    1. Correct Answer: BD

      C is not correct.
      JOIN USING syntax cannot be used to access data from tables through non equi joins.

      B is correct.
      JOIN USING syntax can be used to restrict the number of columns used in a NATURAL join, use it instead of NATURAL JOIN syntax.
      For example NATURAL JOIN use 3 columns for join two tables, but you want to use only one column – so you can using JOIN USING syntax.

      2
      1

Leave a Reply

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


The reCAPTCHA verification period has expired. Please reload the page.