I have this table
Type Price
A1 900
A2 800
A3 700
A4 600
I want to execute a update query where the Prices for A1, A3 and A4 increased by 5% The price for A2 must be increased with 6,5%
I tried to use Case or IIF and many more. But i cant figure out how i can put this in one query.
SET Price = price + (price * .05) wheretype <> 'A2'`, etc