lahmanlite/sql/corrections/halloffame.sql

10 lines
163 B
MySQL
Raw Normal View History

2024-01-27 20:47:17 +00:00
begin;
update halloffame
set ballots = null
where ballots = '' or ballots = 'NA';
update halloffame
set needed = null
where needed = '' or needed = 'NA';
commit;