LEAST() function : LEAST « Math « SQL / MySQL






LEAST() function

   
mysql>
mysql> SELECT LEAST(4, 83, 0, 9, -3);
+------------------------+
| LEAST(4, 83, 0, 9, -3) |
+------------------------+
|                     -3 |
+------------------------+
1 row in set (0.00 sec)

mysql>

   
    
    
  








Related examples in the same category