Question
Easy

Which of the following operations requires two tables as input having a least one common column ?

1
Select
2
Join
3
Projection
4
Cartesian product
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Database Management System (DBMS) & SQL
Topic: MS Access
Correct Answer
Option B
Explanation

The correct option is (2): A Join is a crucial binary operation in relational algebra and SQL that serves to combine records from two or more tables. The defining characteristic of most practical join types, such as the Inner Join, Equijoin, or Natural Join, is that they explicitly require at least one column to be common between the tables. This common column, often a Foreign Key referencing a Primary Key,…Read More