Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

MySQL - แถว SUM ที่มี ID เดียวกัน?


หากต้องการรวมแถวด้วย ID เดียวกัน ให้ใช้อนุประโยค GROUP BY HAVING

ให้เราสร้างตาราง -

ตัวอย่าง

mysql> create table demo84
   -> (
   -> id int,
   -> price int
   -> )
   -> ;
Query OK, 0 rows affected (0.60

แทรกระเบียนบางส่วนลงในตารางโดยใช้คำสั่ง insert -

ตัวอย่าง

mysql> insert into demo84 values(1,2000);
Query OK, 1 row affected (0.08

mysql> insert into demo84 values(1,2000);
Query OK, 1 row affected (0.14

mysql> insert into demo84 values(2,1800);
Query OK, 1 row affected (0.14

mysql> insert into demo84 values(2,2200);
Query OK, 1 row affected (0.14

mysql> insert into demo84 values(3,1700);
Query OK, 1 row affected (0.12

แสดงบันทึกจากตารางโดยใช้คำสั่ง select -

ตัวอย่าง

mysql> select *from demo84;

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ผลลัพธ์

+------+-------+

| id   | price |

+------+-------+

|    1 |  2000 |

|    1 |  2000 |

|    2 |  1800 |

|    2 |  2200 |

|    3 |  1700 |

+------+-------+

5 rows in set (0.00 sec)

ต่อไปนี้เป็นแบบสอบถามเพื่อรวมแถวที่มีรหัสเดียวกัน -

ตัวอย่าง

mysql> select id,sum(price) as Total from demo84
   -> group by id
   -> having sum(demo84.price) >=2000;

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ผลลัพธ์

+------+-------+

| id   | Total |

+------+-------+

|    1 |  4000 |

|    2 |  4000 |

+------+-------+

2 rows in set (0.00 sec)