lahmanlite/sql/teamseasonshalf.sql

20 lines
475 B
MySQL
Raw Normal View History

2024-01-30 01:48:17 +00:00
begin;
attach database 'baseball-raw.db' as 'raw';
alter table teamshalf rename to "teamseasonshalf";
insert into teamseasonshalf
select yearid, null, teamid, half, null, null, "rank", sum(g), sum(w), sum(l)
from "raw".managershalf
where yearid = 1892
group by yearid, teamid, half;
update teamseasonshalf
set teamid = 'WS9'
where yearid = 1892 and teamid = 'WAS';
alter table teamseasonshalf drop column "lgID";
alter table teamseasonshalf drop column "divID";
commit;