EquiJoin
Equijoin means the ON uses equality: ON s.roll = m.roll. Almost every student JOIN is an equijoin. The word shows up in MCQs versus theta join (>, <) which is rare.
Inner + equal keys = equijoin. You already know it if you can write JOIN … ON a = b.
Trap — treating ‘equijoin’ as a separate MySQL keyword. It is not. It is a description.
On the example next to this theory: EquiJoin: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
students.id
=
marks.student_id
│
▼
one result rowExam tip
Equijoin = ON left.col = right.col. No special keyword.