Условие задачи
Вывести стадион с самым большим количеством игр в бд.
Ответ
select top 1 --отобразить первую строку выборкиcountGame, stadiumNamefrom( select stadium_id, name as stadiumName,(select count(game.game_id) from game where game.stadium_id=stadium.stadium_id) as countGame from stadium ) CountGa...