set death months and days to null
This commit is contained in:
parent
e34da70285
commit
c46190d5a8
|
@ -61,6 +61,15 @@ set
|
||||||
bbrefID = nullif(bbrefid, ''),
|
bbrefID = nullif(bbrefid, ''),
|
||||||
retroID = nullif(retroid, '');
|
retroID = nullif(retroid, '');
|
||||||
|
|
||||||
|
-- we don't know exactly when Alfredo Cabrera died
|
||||||
|
update people
|
||||||
|
set deathMonth = null
|
||||||
|
where deathMonth = 0;
|
||||||
|
|
||||||
|
update people
|
||||||
|
set deathDay = null
|
||||||
|
where deathDay = 0;
|
||||||
|
|
||||||
update people
|
update people
|
||||||
set throws = 'B'
|
set throws = 'B'
|
||||||
where throws = 'S';
|
where throws = 'S';
|
||||||
|
|
Loading…
Reference in New Issue