13 lines
237 B
MySQL
13 lines
237 B
MySQL
|
begin;
|
||
|
update allstarfull
|
||
|
set gamenum = 1
|
||
|
where gameid = 'ALS196207100';
|
||
|
|
||
|
update allstarfull
|
||
|
set gamenum = 2
|
||
|
where gameid = 'NLS196207300';
|
||
|
|
||
|
delete from allstarfull
|
||
|
where playerid = 'freesda01' and yearid = 2012 and lgid = 'AL';
|
||
|
commit;
|