Home > Net >  Access Query To Raise Field Values by a Percentage?
Access Query To Raise Field Values by a Percentage?

Time:10-14

Is anyone kindly able to help me write an SQL Access Query to do something like this?

Table [Product Properties]

If [nType] = 8

Then [nValue1]*1.1

I wish to increase the values of fields in a column by a percentage if the value of the field in another column is '8',

Thank you

CodePudding user response:

Try this:

Update [Product Properties]
Set [nValue1] = [nValue1] * 1.1
Where [nType] = 8
  • Related