2024-02-01 04:43:23 +00:00
|
|
|
pragma foreign_keys = 0;
|
|
|
|
|
2024-01-30 01:48:17 +00:00
|
|
|
begin;
|
|
|
|
attach database 'baseball-raw.db' as 'raw';
|
|
|
|
|
2024-01-31 06:09:39 +00:00
|
|
|
create temp table teamseasonshalf as
|
|
|
|
select * from "raw".teamshalf;
|
2024-01-30 01:48:17 +00:00
|
|
|
|
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';
|
|
|
|
|
2024-01-31 06:09:39 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS main."teamseasonshalf" (
|
|
|
|
"year" NUMERIC,
|
|
|
|
"team" TEXT,
|
|
|
|
"Half" NUMERIC,
|
|
|
|
"Rank" NUMERIC,
|
|
|
|
"G" NUMERIC,
|
|
|
|
"W" NUMERIC,
|
|
|
|
"L" NUMERIC,
|
|
|
|
PRIMARY KEY("year","team","Half"),
|
|
|
|
foreign key("year","team") references "teamseasons"("year","team")
|
|
|
|
);
|
|
|
|
|
|
|
|
insert into main.teamseasonshalf select distinct * from temp.teamseasonshalf;
|
2024-01-30 01:48:17 +00:00
|
|
|
commit;
|