SELF JOIN
SELECT s1.*, s2.first_name FROM `students` s1 JOIN `students` s2 ON s2.santa_id = s1.id
alias
Pro tip: use ```triple backticks around text``` to write in code fences