lahmanlite/sql/collegeplaying.sql

30 lines
748 B
MySQL
Raw Normal View History

pragma foreign_keys = 0;
2024-01-26 03:08:32 +00:00
begin;
2024-01-31 06:09:39 +00:00
attach database 'baseball-raw.db' as 'raw';
create temp table collegeplaying as
select * from "raw".collegeplaying;
2024-01-26 03:08:32 +00:00
-- fix school id
update collegeplaying
set schoolID = 'cwpost'
where schoolID = 'ctpostu';
-- baseball almanac says Dick Woodson didn't play in college, and i can't find
-- another source that says otherwise
delete from collegeplaying
where playerid = 'woodsdi01';
2024-01-31 06:09:39 +00:00
CREATE TABLE IF NOT EXISTS main."collegeplaying" (
"player" TEXT,
"school" TEXT,
"year" NUMERIC,
PRIMARY KEY("player","year","school"),
foreign key("player") references "people"("ID"),
foreign key("school") references "schools"("ID")
);
insert into main.collegeplaying select distinct * from temp."collegeplaying";
2024-01-26 03:08:32 +00:00
commit;