GREATEST() and LEAST() Functions
mysql>
mysql> SELECT GREATEST(4, 83, 0, 9, -3);
+---------------------------+
| GREATEST(4, 83, 0, 9, -3) |
+---------------------------+
| 83 |
+---------------------------+
1 row in set (0.00 sec)
Related examples in the same category