fix silver slugger typo

This commit is contained in:
filifa 2024-05-05 00:07:23 -05:00
parent e3288708a6
commit 834914eca8
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ union
select distinct yearid, awardid, lgID select distinct yearid, awardid, lgID
from "raw".awardsplayers; from "raw".awardsplayers;
update yearlyawards
set award = 'Silver Slugger'
where award = 'SIlver Slugger';
create table if not exists main."yearlyawards" ( create table if not exists main."yearlyawards" (
"year" numeric, "year" numeric,
"award" text, "award" text,