SQL - INNER JOIN
Given tables
Staff and Teams with a common column TeamID, what does this query return?SELECT s.Name, t.TeamName FROM Staff s JOIN Teams t ON s.TeamID = t.TeamID;
