lahmanlite/sql/fielding.sql

33 lines
701 B
MySQL
Raw Normal View History

2024-01-26 20:03:29 +00:00
begin;
2024-01-31 06:09:39 +00:00
attach database 'baseball-raw.db' as 'raw';
create temp table fielding as
select * from "raw".fielding;
2024-01-26 20:03:29 +00:00
alter table fielding drop column "lgID";
2024-01-30 03:43:52 +00:00
alter table fielding drop column "teamID";
2024-01-31 06:09:39 +00:00
CREATE TABLE IF NOT EXISTS main."fielding" (
"player" TEXT,
"year" NUMERIC,
"stint" NUMERIC,
"POS" TEXT,
"G" NUMERIC,
"GS" NUMERIC,
"InnOuts" NUMERIC,
"PO" NUMERIC,
"A" NUMERIC,
"E" NUMERIC,
"DP" NUMERIC,
"PB" NUMERIC,
"WP" NUMERIC,
"SB" NUMERIC,
"CS" NUMERIC,
"ZR" NUMERIC,
PRIMARY KEY("player","year","stint","POS"),
foreign key("year","player","stint") references "playerstints"("year","player","stint")
);
insert into main.fielding select distinct * from temp."fielding";
2024-01-26 20:03:29 +00:00
commit;