เราสามารถใช้ GROUP BY เพื่อจัดกลุ่มค่าจากคอลัมน์ และถ้าเราต้องการ เราสามารถคำนวณในคอลัมน์นั้นได้ คุณสามารถใช้ฟังก์ชัน COUNT, SUM, AVG ฯลฯ ในคอลัมน์ที่จัดกลุ่มได้ เพื่อทำความเข้าใจข้อ GROUP BY ด้วยมุมมอง เรากำลังสร้างมุมมองชื่อ 'ข้อมูล' โดยใช้ตารางฐาน 'Student_info' ซึ่งมีข้อมูลดังต่อไปนี้ -
mysql> Select * from Student_info; +------+---------+------------+------------+ | id | Name | Address | Subject | +------+---------+------------+------------+ | 101 | YashPal | Amritsar | History | | 105 | Gaurav | Chandigarh | Literature | | 125 | Raman | Shimla | Computers | | 130 | Ram | Jhansi | Computers | | 132 | Shyam | Chandigarh | Economics | | 133 | Mohan | Delhi | Computers | +------+---------+------------+------------+ 6 rows in set (0.00 sec)
ไวยากรณ์
Create or Replace View view_name AS Select_statements FROM table GROUP BY expression1, expression2, ... expression_n;
ตัวอย่าง
mysql> Create or Replace View Info AS select Subject, COUNT(*) FROM Student_info GROUP BY Subject; Query OK, 0 rows affected (0.10 sec) mysql> Select * from info; +------------+----------+ | Subject | COUNT(*) | +------------+----------+ | Computers | 3 | | Economics | 1 | | History | 1 | | Literature | 1 | +------------+----------+ 4 rows in set (0.00 sec) mysql> Create or Replace View Info AS select Subject,Name, COUNT(Subject) FROM Student_info GROUP BY Subject, Name; Query OK, 0 rows affected (0.05 sec)
ข้อความค้นหาด้านบนจะมี 2 คอลัมน์ใน GROUP BY clause
mysql> Select * from info; +------------+---------+----------------+ | Subject | Name | COUNT(Subject) | +------------+---------+----------------+ | Computers | Mohan | 1 | | Computers | Ram | 1 | | Computers | Raman | 1 | | Economics | Shyam | 1 | | History | YashPal | 1 | | Literature | Gaurav | 1 | +------------+---------+----------------+ 6 rows in set (0.00 sec)
ชุดผลลัพธ์ข้างต้นแสดงว่าส่วนคำสั่ง GROUP BY จัดกลุ่มชุดของแถวเป็นชุดของแถวสรุปตามค่าของคอลัมน์