10 lines
187 B
MySQL
10 lines
187 B
MySQL
|
begin;
|
||
|
update awardsshareplayers
|
||
|
set awardid = 'Cy Young Award'
|
||
|
where awardid = 'Cy Young';
|
||
|
|
||
|
update awardsshareplayers
|
||
|
set awardid = 'Most Valuable Player'
|
||
|
where awardid = 'MVP';
|
||
|
commit;
|