我有两张桌子:产品和设置。
产品:

Name  BuyPrice SellPrice
========================
Coke  15.00    0

设置
sellPricePercent
=================
50

我想通过使用SellPricefrom tableProducts来设置sellPricePercentfrom tablesettings值。结果是:
Name  BuyPrice SellPrice
========================
Coke  15.00    30

我该怎么做?

最佳答案

试试这个:

update Products, Settings
set Products.SellPrice = Products.BuyPrice*(100/Settings.sellPricePercent);

如果您对不同的产品有不同的sellPricePercent,那么您可以加入product name上的表。

关于php - 使用另一个表中的数据计算列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39977911/

10-15 19:40