Mega Code Archive

 
Categories / MySQL Tutorial / Comparison Functions Operators
 

LEAST with float value

mysql> mysql> SELECT LEAST(34.0,3.0,5.0,767.0); +---------------------------+ | LEAST(34.0,3.0,5.0,767.0) | +---------------------------+ |                       3.0 | +---------------------------+ 1 row in set (0.00 sec) mysql>