fix capitalization
This commit is contained in:
parent
375c6d940e
commit
eb2874a9c5
|
@ -13,6 +13,10 @@ union
|
||||||
select distinct awardID
|
select distinct awardID
|
||||||
from "raw".awardsplayers;
|
from "raw".awardsplayers;
|
||||||
|
|
||||||
|
update awards
|
||||||
|
set id = 'Silver Slugger'
|
||||||
|
where id = 'SIlver Slugger';
|
||||||
|
|
||||||
create table if not exists "awards" (
|
create table if not exists "awards" (
|
||||||
"ID" text,
|
"ID" text,
|
||||||
primary key("ID")
|
primary key("ID")
|
||||||
|
|
|
@ -7,6 +7,10 @@ create temp table awardsplayers as
|
||||||
select * from "raw".awardsplayers;
|
select * from "raw".awardsplayers;
|
||||||
alter table temp.awardsplayers drop column "tie";
|
alter table temp.awardsplayers drop column "tie";
|
||||||
|
|
||||||
|
update awardsplayers
|
||||||
|
set awardid = 'Silver Slugger'
|
||||||
|
where awardid = 'SIlver Slugger';
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS main."awardsplayers" (
|
CREATE TABLE IF NOT EXISTS main."awardsplayers" (
|
||||||
"player" TEXT,
|
"player" TEXT,
|
||||||
"award" TEXT,
|
"award" TEXT,
|
||||||
|
|
Loading…
Reference in New Issue