lahmanlite/sql/homegames.sql

12 lines
273 B
MySQL
Raw Normal View History

2024-01-26 19:27:58 +00:00
begin;
alter table "homegames" drop column "league.key";
update homegames
set "team.key" = 'WS9'
where "team.key" = 'WAS' and "year.key" between 1891 and 1899;
update homegames
set "team.key" = 'PHP'
where "team.key" = 'PH4' and "year.key" between 1890 and 1891;
2024-01-26 19:27:58 +00:00
commit;