lahmanlite/sql/fieldingofsplit.sql

45 lines
977 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
2024-02-04 22:20:07 +00:00
update fieldingofsplit
set
gs = nullif(gs,''),
innouts = nullif(innouts,''),
pb = nullif(pb,''),
wp = nullif(wp,''),
sb = nullif(sb,''),
cs = nullif(cs,''),
zr = nullif(zr,'');
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,
2024-02-02 03:45:26 +00:00
"PO" NUMERIC check (PO <= InnOuts),
2024-01-31 06:09:39 +00:00
"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;