Skip to content

Latest commit

 

History

History
executable file
·
28 lines (20 loc) · 311 Bytes

File metadata and controls

executable file
·
28 lines (20 loc) · 311 Bytes

MAX

description

Syntax

MAX(expr)

返回expr表达式的最大值

example

MySQL > select max(scan_rows)
from log_statis
group by datetime;
+------------------+
| max(`scan_rows`) |
+------------------+
|          4671587 |
+------------------+

keyword

MAX