lahmanlite/sql/corrections/teamshalf.sql

8 lines
184 B
MySQL
Raw Normal View History

2024-01-27 21:16:10 +00:00
begin;
insert into teamshalf
select yearid, null, teamid, half, null, null, "rank", sum(g), sum(w), sum(l)
from managershalf
where yearid = 1892
group by yearid, teamid, half;
commit;