Add some 2nf transformations

This commit is contained in:
2024-01-26 13:27:58 -06:00
parent df011ba51b
commit 0d00bddead
7 changed files with 51 additions and 1 deletions

3
sql/2nf/appearances.sql Normal file
View File

@@ -0,0 +1,3 @@
begin;
alter table "appearances" drop column "lgID";
commit;

View File

@@ -0,0 +1,21 @@
begin;
create table if not exists appearancespost (
"yearID" numeric,
"playerID" text,
"teamID" text,
primary key("yearID","playerID")
);
insert into appearancespost
select distinct yearID, playerID, teamID
from battingpost
union
select distinct yearID, playerID, teamID
from pitchingpost;
alter table "battingpost" drop column "teamID";
alter table "battingpost" drop column "lgID";
alter table "pitchingpost" drop column "teamID";
alter table "pitchingpost" drop column "lgID";
commit;

3
sql/2nf/homegames.sql Normal file
View File

@@ -0,0 +1,3 @@
begin;
alter table "homegames" drop column "league.key";
commit;

3
sql/2nf/salaries.sql Normal file
View File

@@ -0,0 +1,3 @@
begin;
alter table "salaries" drop column "lgID";
commit;

4
sql/2nf/seriespost.sql Normal file
View File

@@ -0,0 +1,4 @@
begin;
alter table "seriespost" drop column "lgIDwinner";
alter table "seriespost" drop column "lgIDloser";
commit;

View File

@@ -0,0 +1,15 @@
begin;
create table if not exists "teamshalfdivisions" (
"yearID" numeric,
"teamID" text,
"divID" text,
primary key("yearID","teamID")
);
insert into teamshalfdivisions
select distinct yearid, teamid, divid
from teamshalf;
alter table teamshalf drop column "lgID";
alter table teamshalf drop column "divID";
commit;