lahmanlite/sql/appearances.sql

12 lines
249 B
PL/PgSQL

begin;
alter table "appearances" drop column "lgID";
update appearances
set teamid = 'WS9'
where teamid = 'WAS' and yearid between 1891 and 1899;
update appearances
set teamid = 'PHP'
where teamid = 'PH4' and yearid between 1890 and 1891;
commit;