lahmanlite/sql/batting.sql

58 lines
1.3 KiB
MySQL
Raw Normal View History

pragma foreign_keys = 0;
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 batting as
select * from "raw".batting;
2024-01-26 20:03:29 +00:00
alter table batting drop column "lgID";
2024-01-30 03:43:52 +00:00
alter table batting drop column "teamID";
2024-05-05 01:59:32 +00:00
alter table batting drop column "G";
alter table batting drop column "G_batting";
2024-01-31 06:09:39 +00:00
2024-02-01 04:37:26 +00:00
-- bbref doesn't say this guy played in 1911
delete from batting
where playerid = 'smithbu01' and yearid = 1911;
2024-02-04 20:59:16 +00:00
update batting
set
RBI = nullif(RBI,''),
SB = nullif(SB,''),
CS = nullif(CS,''),
SO = nullif(SO,''),
IBB = nullif(IBB,''),
HBP = nullif(HBP,''),
SH = nullif(SH,''),
SF = nullif(SF,''),
GIDP = nullif(GIDP,'');
2024-01-31 06:09:39 +00:00
CREATE TABLE IF NOT EXISTS main."batting" (
"player" TEXT,
"year" NUMERIC,
"stint" NUMERIC,
"AB" NUMERIC,
"R" NUMERIC,
2024-02-04 20:59:16 +00:00
"H" NUMERIC check (H <= AB),
"2B" NUMERIC check ("2B" <= H),
"3B" NUMERIC check ("3B" <= H),
"HR" NUMERIC check ("HR" <= H),
2024-01-31 06:09:39 +00:00
"RBI" NUMERIC,
"SB" NUMERIC,
"CS" NUMERIC,
"BB" NUMERIC,
2024-02-04 20:59:16 +00:00
"SO" NUMERIC check (SO <= AB),
"IBB" NUMERIC check (IBB <= BB),
2024-01-31 06:09:39 +00:00
"HBP" NUMERIC,
"SH" NUMERIC,
"SF" NUMERIC,
2024-02-04 20:59:16 +00:00
"GIDP" NUMERIC check (GIDP <= AB),
2024-05-05 01:59:32 +00:00
"G_old" NUMERIC check (GIDP <= AB),
2024-01-31 06:09:39 +00:00
PRIMARY KEY("player","year","stint"),
foreign key("year","player","stint") references "playerstints"("year","player","stint")
);
insert into main.batting select distinct * from temp."batting";
2024-01-26 20:03:29 +00:00
commit;