这就是我的代码现在的样子:
$stmt = $link->prepare("UPDATE product SET product_price_lowest = $adPrice WHERE product_id = $prodId");
$stmt->execute();
我只想设置 product_price_lowest TO $ adPrice:
IF $ adPrice < product_price_lowest
我怎么能这样做?
答案 0 :(得分:0)
然后将其添加到WHERE
子句以及
WHERE product_id = $prodId
AND $adPrice < product_price_lowest