我试图得到整列的总和,但它不起作用。
我的代码应该更改。
//error -> Warning: mysql_fetch_assoc() expects parameter 1 to be resource,
<?php
include("connect2.php");
$value = mysql_query("SELECT SUM(total) AS sum_total * FROM `posts` ") ;
$row = mysql_fetch_assoc($value);
$sum_total = $row['sum_total'];
?>
<div>
<a>
<?php echo $sum_total; ?>
</a>
</div>
答案 0 :(得分:3)
尝试不使用*
:
SELECT SUM(total) AS sum_total FROM `posts`