SELECT ID, Name, Marks, Grade
FROM Students AS s
JOIN Grades AS g ON s.Marks BETWEEN g.Min_Mark AND g.Max_Mark;
I browsed numbers of resources about left join, right join, inner join and full outer join, but I have no idea what is this "join" means. Is this some shortcut? if not, what is this?
Thanks.