20 lines
475 B
MySQL
20 lines
475 B
MySQL
|
begin;
|
||
|
attach database 'baseball-raw.db' as 'raw';
|
||
|
|
||
|
alter table teamshalf rename to "teamseasonshalf";
|
||
|
|
||
|
insert into teamseasonshalf
|
||
|
select yearid, null, teamid, half, null, null, "rank", sum(g), sum(w), sum(l)
|
||
|
from "raw".managershalf
|
||
|
where yearid = 1892
|
||
|
group by yearid, teamid, half;
|
||
|
|
||
|
update teamseasonshalf
|
||
|
set teamid = 'WS9'
|
||
|
where yearid = 1892 and teamid = 'WAS';
|
||
|
|
||
|
alter table teamseasonshalf drop column "lgID";
|
||
|
alter table teamseasonshalf drop column "divID";
|
||
|
|
||
|
commit;
|