首頁 >資料庫 >mysql教程 >如何使用 PHP 計算 MySQL 中的欄位總和?

如何使用 PHP 計算 MySQL 中的欄位總和?

Patricia Arquette
Patricia Arquette原創
2024-12-09 07:25:06992瀏覽

How to Calculate Column Sums in MySQL using PHP?

如何使用PHP 檢索MySQL 中的列總和

基於查詢的方法:

高效檢索列,利用SQL內建的聚合函數:

SELECT SUM(column_name) FROM table_name;

PDO實作:

// Prepare the query
$stmt = $handler->prepare('SELECT SUM(value) AS value_sum FROM codes');

// Execute the query
$stmt->execute();

// Fetch the results
$row = $stmt->fetch(PDO::FETCH_ASSOC);

// Retrieve the sum
$sum = $row['value_sum'];

mysqli實作:

// Execute the query
$result = mysqli_query($conn, 'SELECT SUM(value) AS value_sum FROM codes');

// Fetch the results
$row = mysqli_fetch_assoc($result);

// Retrieve the sum
$sum = $row['value_sum'];

注意:

  • 注意:
  • 範例程式碼假設 $conn 是預先建立的 MySQL 連線。
  • 列名稱和表名稱可能會根據您的資料庫架構而有所不同。

以上是如何使用 PHP 計算 MySQL 中的欄位總和?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn