lahmanlite/sql/collegeplaying.sql

12 lines
281 B
MySQL
Raw Normal View History

2024-01-26 03:08:32 +00:00
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;