这是我的代码现在的样子:

$stmt = $link->prepare("UPDATE product SET product_price_lowest = $adPrice WHERE product_id = $prodId");
$stmt->execute();




我只想将product_price_lowest设置为$ adPrice:如果$ adPrice

我怎样才能做到这一点?

最佳答案

然后将其添加到WHERE子句中

WHERE product_id = $prodId
AND $adPrice < product_price_lowest

关于mysql - 根据条件更新表和SET列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44663352/

10-12 15:13