Skip to content
Snippets Groups Projects
lab5groupA.sql 213 B
Newer Older
Clemens Kupke's avatar
Clemens Kupke committed


create view t1_groupA
	as
select t1.tna name1, game_date, team_1_goals, t2.tna as name2, team_2_goals
from team t1, team t2, game
where t1.tno = team_1 AND t2.tno = team_2
and t1.grp = 'A'
and round = 'first';