Multiple choice technology programming languages

A PROC SQL inner join can combine

  1. a maximum of 2 tables or in-line views, but multiple joins can be chained together.

  2. a maximum of 32 tables or 2 in-line views.

  3. a maximum of 32 tables, which includes any tables referenced by an in-line view.

  4. a maximum of 2 tables and 32 columns.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PROC SQL inner joins can combine up to 32 tables total, including any tables referenced by in-line views within the query. Options A and B incorrectly limit the number of tables to 2, while Option D incorrectly limits both tables and columns.