Sulla base delle informazioni nell'articolo che hai collegato a questo dovrebbe funzionare:
update giveaways set winner='1'
where Id = (select Id from (select max(Id) as id from giveaways) as t)
Sulla base delle informazioni nell'articolo che hai collegato a questo dovrebbe funzionare:
update giveaways set winner='1'
where Id = (select Id from (select max(Id) as id from giveaways) as t)