lahmanlite/sql/corrections/halloffame.sql

10 lines
163 B
PL/PgSQL

begin;
update halloffame
set ballots = null
where ballots = '' or ballots = 'NA';
update halloffame
set needed = null
where needed = '' or needed = 'NA';
commit;