2
2
select * from stadium where sid in(select sid from match group by sid having
count(sid)=(select max(count(sid)) from match group by sid));
select * from player where pid not in(select captainpid from team)and pid in
(select manofmatch from match group by manofmatch having count(manofmatch)=2);
select tname from team where tid in(select winningteamid from match group
by(winningteamid,sid)having count(*) in(select count (winningteamid) from match
group by winningteamid));