Ask Question
7 June, 23:32

If you are attempting to join two tables that have multiple common columns, which of the following JOIN keywords should be used to specify how the tables should be linked?

1. outer join

2. join ... using

3. cross join

4. none of the above

+4
Answers (1)
  1. 8 June, 03:27
    0
    Join ... using keywords should be used to specify how the tables should be linked.

    2. join ... using

    Explanation:

    If table is has to be linked it can be connected normally as outer join with same column name.

    Purpose of outer join is to fetch the matched records among the table and get the relevant records from table.

    People can also use select statement with "IN" sub query, if we use "IN" query execute very slow during the fetching the matched records.

    As good practice join using is used in same column name is available across the table.

    By using join using in query end user can set some query conditions also.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “If you are attempting to join two tables that have multiple common columns, which of the following JOIN keywords should be used to specify ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers