USING
keywordSELECT
students.first_name,
notes.*
FROM `students`
LEFT JOIN notes USING(student_id)
The alternative of the above query using ON
clause:SELECT
students.first_name,
notes.*
FROM `students`
LEFT JOIN notes ON notes.student_id = students.student_id