12 lines
281 B
PL/PgSQL
12 lines
281 B
PL/PgSQL
begin;
|
|
-- 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';
|
|
commit;
|