Equijoin
Equijoin is a type of database join operation that combines rows from two or more tables based on a matching condition between specified columns. The condition in an equijoin is always an equality comparison, meaning that a row from one table is included in the result set only if the value in the specified join column(s) is exactly equal to the value in the corresponding join column(s) of a row in the other table.
This is the most common type of join and is often the default behavior when a join
Equijoins are fundamental to relational database operations as they allow for the retrieval of related data