Multiple choice technology packaged enterprise solutions

Which one of the following is true of joins

  1. Joins are between two tables

  2. Joins cannot be updated

  3. Joins are used in multi value groups

  4. Joins are created in the client

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

SQL joins fundamentally operate between two tables (or table-like objects) by matching related columns. While some databases support joining more than two tables in a single query, the basic join operation always involves exactly two tables at its core. Joins are server-side operations and can be part of updatable views.

AI explanation

In basic relational database and query-tool terminology (e.g., Access, FileMaker, simple SQL joins), a join fundamentally connects two tables based on a related column, forming the basis of relational queries; more complex queries can chain multiple joins but each individual join operation is still a pairing between two tables. Joins generally can be used in updatable queries (so "cannot be updated" is false), aren't inherently for "multi value groups" (a distractor with no real meaning here), and are defined at the database/query level, not merely "in the client" (a UI/application layer). So "Joins are between two tables" is the best true statement among the options.