MariaDB Max()函式


MariaDB MAX()函式用於檢索表示式的最大值。

語法:

SELECT MAX(aggregate_expression)  
FROM tables  
[WHERE conditions];

資料準備

"testdb"資料庫中建立一個"students"表,並插入一些資料。參考以下建立語句 -

USE testdb;
DROP TABLE students;
-- 建立新表
CREATE TABLE students(  
    student_id INT NOT NULL AUTO_INCREMENT,  
    student_name VARCHAR(100) NOT NULL,  
    student_address VARCHAR(40) default NULL, 
    admission_date DATE,
    score float(4, 1) default NULL, 
    PRIMARY KEY ( student_id )
);
-- 插入資料
INSERT INTO students  
(student_id, student_name, student_address,score, admission_date)  
VALUES(1,'Maxsu','Haikou', 99.5,'2017-01-07 00:00:00');

INSERT INTO students  
(student_id, student_name, student_address, score, admission_date)  
VALUES  
(2,'Crurry','Beijing',86,'2016-05-07 00:00:00'),
(3,'JMaster','Beijing',91,'2016-05-07 00:00:00'),  
(4,'Mahesh','Guangzhou',78,'2016-06-07 00:00:00'),  
(5,'Kobe','Shanghai',89,'2016-02-07 00:00:00'),  
(6,'Blaba','Shengzhen',100,'2016-08-07 00:00:00');

1. MAX()函式與單表示式

範例:

查詢Student表的最低分數。參考以下查詢語句 -

SELECT MAX(Score) AS "Greatest Score" FROM students;

執行上面查詢語句,得到以下結果 -

MariaDB [testdb]> SELECT MAX(Score) AS "Greatest Score" FROM students;
+----------------+
| Greatest Score |
+----------------+
|          100.0 |
+----------------+
1 row in set (0.03 sec)

2. MAX()函式與GROUP BY子句

可以使用MAX函式的GROUP BY子句來分組。

再插入一條重複的資料 -

INSERT INTO students  
(student_name, student_address,score, admission_date)  
VALUES('Maxsu','Haikou', 91,'2017-11-07 00:00:00');

當前資料庫中的記錄如下 -

MariaDB [testdb]> select * from students;
+------------+--------------+-----------------+----------------+-------+
| student_id | student_name | student_address | admission_date | score |
+------------+--------------+-----------------+----------------+-------+
|          1 | Maxsu        | Haikou          | 2017-01-07     |  99.5 |
|          2 | Crurry       | Beijing         | 2016-05-07     |  86.0 |
|          3 | JMaster      | Beijing         | 2016-05-07     |  91.0 |
|          4 | Mahesh       | Guangzhou       | 2016-06-07     |  78.0 |
|          5 | Kobe         | Shanghai        | 2016-02-07     |  89.0 |
|          6 | Blaba        | Shengzhen       | 2016-08-07     | 100.0 |
|          7 | Maxsu        | Haikou          | 2017-11-07     |  91.0 |
+------------+--------------+-----------------+----------------+-------+
7 rows in set (0.07 sec)

範例:

SELECT student_name, MAX(score) AS "Lowest Score"  
FROM Students  
where student_id < 10  
GROUP BY student_name;

執行上面查詢語句,得到以下結果 -

MariaDB [testdb]> SELECT student_name, MAX(score) AS "Lowest Score"
    -> FROM Students
    -> where student_id < 10
    -> GROUP BY student_name;
+--------------+--------------+
| student_name | Lowest Score |
+--------------+--------------+
| Blaba        |        100.0 |
| Crurry       |         86.0 |
| JMaster      |         91.0 |
| Kobe         |         89.0 |
| Mahesh       |         78.0 |
| Maxsu        |         99.5 |
+--------------+--------------+
6 rows in set (0.04 sec)