Can anybody tell me how to fix this query?
update ae44 set Price = Case when ID = \'AT259793380\' then \'500\' when ID = \'AT271729590\' then \'600\' when ID
Remove the second "case" and it will work:
UPDATE ae44 SET Price = (CASE WHEN ID = 'AT259793380' THEN '500' WHEN ID = 'AT271729590' THEN '600' WHEN ID = 'AT275981020' THEN '700' END)