Question: What is the result of an `INNER JOIN` between table1 and table2?

  1. Only records that have corresponding entries in table1 and table2 are displayed.
  2. No records from table1 are ever displayed.
  3. All records from table1 are displayed, regardless of whether the records have a corresponding row in table2
  4. Only records that have no corresponding records in table1 or table2 are displayed.

Answer: The correct answer of the above question is Option A:Only records that have corresponding entries in table1 and table2 are displayed.