|
|
|
php จะนำค่าเลขในฐานข้อมูล มาบวกกันทำยังไงครับ แบบไม่แสดงทุกอัน |
|
|
|
|
|
|
|
ผมอยากจะเอาเลข weight มาบวกกันครับ ไม่ทราบว่าต้องใช้คำสั่งอะไรครับ
|
ประวัติการแก้ไข 2023-02-11 12:40:23 2023-02-11 12:41:23
|
|
|
|
Date :
2023-02-11 12:36:05 |
By :
somara |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แคบนิดเดียวจริงๆ
SUM ทั้ง column
SELECT SUM(weight) AS total_weight FROM table_name
บวกเฉพาะแถวที้่เลือก (ตามเงื่อนไขใน where clause)
SELECT SUM(weight) AS total_weight FROM table_name WHERE id IN (1, 2, 3)
ตัวอย่างการนำไปใช้ สมมติใช้ mysqli driver
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database_name";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT SUM(weight) AS total_weight FROM table_name WHERE id IN (1, 2, 3)";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo "Total weight: " . $row["total_weight"];
} else {
echo "0 results";
}
$conn->close();
?>
|
|
|
|
|
Date :
2023-02-11 14:04:44 |
By :
009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|