Files
lahmanlite/sql/collegeplaying.sql

30 lines
746 B
MySQL
Raw Normal View History

pragma foreign_keys = 0;
2024-01-25 21:08:32 -06:00
begin;
2024-05-04 22:11:20 -05:00
attach database 'lahman-raw.db' as 'raw';
2024-01-31 00:09:39 -06:00
create temp table collegeplaying as
select * from "raw".collegeplaying;
2024-01-25 21:08:32 -06: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 00:09:39 -06: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-25 21:08:32 -06:00
commit;