lahmanlite/sql/fieldingofsplit.sql

35 lines
770 B
MySQL
Raw Normal View History

pragma foreign_keys = 0;
2024-01-27 03:50:28 +00:00
begin;
2024-01-31 06:09:39 +00:00
attach database 'baseball-raw.db' as 'raw';
create temp table fieldingofsplit as
select * from fieldingofsplit;
2024-01-27 03:50:28 +00:00
alter table fieldingofsplit drop column "lgID";
2024-01-30 03:43:52 +00:00
alter table fieldingofsplit drop column "teamID";
2024-01-31 06:09:39 +00:00
CREATE TABLE IF NOT EXISTS main."fieldingofsplit" (
"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.fieldingofsplit select distinct * from temp."fieldingofsplit";
2024-01-27 03:50:28 +00:00
commit;