我有一个问题,如果我只想通过一条命令来更新2条记录,就不可能这样吗?

mysql_query("UPDATE damacaicheck SET trimresult = '$trim' where date = '$Current' and date = '$yesterdaydate'");


要么

mysql_query("UPDATE damacaicheck SET trimresult = '$trim' where date in ('$Current','$yesterdaydate')");

最佳答案

代替date = '$Current' AND date = '$yesterdaydate'"使用date = '$Current' OR date = '$yesterdaydate'"

关于php - 在不同日期更新2条记录?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7328516/

10-10 06:41