为什么不起作用?

$selectAllCount = $db->prepare("SELECT SUM(`count`) FROM `Test_Table`");
$selectAllCount->execute();

while($allCountRow = $selectAllCount->fetch(PDO::FETCH_ASSOC)) {
    echo $allCountRow['count'];
}


我用mysql_libs尝试了许多其他方法,但它们似乎都不起作用,这怎么了?

最佳答案

确保为列命名:

$selectAllCount = $db->prepare("SELECT SUM(`count`) as count FROM `Test_Table`");


现在,您将能够根据需要获取结果。

10-08 19:18