我有这个查询,用于更新一个列的值与用户输入的值...我怎么能重写它来更新多个值?
UPDATE `lahiguera_hor`.`cupos`
SET `cuposLun8`='$_POST[cupolun8]'
WHERE `cupos`.`cuposLun8` = '$cupolun8';
提前感谢!
答案 0 :(得分:3)
尝试
UPDATE `lahiguera_hor`.`cupos` SET
`cuposLun8`='$_POST[cupolun8]',
`AdditonalCol1`='$_POST[AdditonalCol1]',
`AdditonalCol2`='$_POST[AdditonalCol2]'
WHERE `cupos`.`cuposLun8` = '$cupolun8';
设置列应使用逗号分隔。