9 lines
95 B
SQL
9 lines
95 B
SQL
SELECT
|
|
w.*,
|
|
t.Name AS team_name
|
|
FROM
|
|
Worker w
|
|
JOIN
|
|
Team t ON w.TeamID = t.ID;
|
|
|