lahmanlite/sql/teamseasonshalf.sql

21 lines
507 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";
2024-01-31 03:18:14 +00:00
alter table teamseasonshalf drop column "lgID";
alter table teamseasonshalf drop column "divID";
alter table teamseasonshalf drop column "DivWin";
2024-01-30 01:48:17 +00:00
insert into teamseasonshalf
2024-01-31 03:18:14 +00:00
select yearid, teamid, half, "rank", sum(g), sum(w), sum(l)
2024-01-30 01:48:17 +00:00
from "raw".managershalf
where yearid = 1892
group by yearid, teamid, half;
update teamseasonshalf
set teamid = 'WS9'
where yearid = 1892 and teamid = 'WAS';
commit;