我有这个sql命令,它总结了a,b,c和d的值。我希望它存储在我的表中总列中。 这是正确的查询吗? 如何存储总价值?
$sql = "SELECT sum(a + b + c + d) as total_value FROM tablename WHERE form_no = '$formnumber'";
答案 0 :(得分:3)
UPDATE tablename
SET total_value = a + b + c + d
WHERE form_no = '$formnumber'
答案 1 :(得分:0)
$sql = "SELECT (a + b + c + d) as total_value FROM tablename WHERE form_no = '$formnumber'";
其中a,b,c,d是列名..
这很好..检查