假如有供货商A,B
供应的货物分别是:A1,A2,A3,B1,B2
要求:
(1):把供货商A的所有产品提高30%
则:Update tablename set values=values*(1+30%) where 供货商=A
(2):把供货商B的产品B1降价20%,B2降价30%则
Update tablename set values=values*(1-20%) where 供货商=B and 产品=B1
Update tablename set values=values*(1-30%) where 供货商=B and 产品=B2