select least( 'A', 'B', 'C' ) from dual; : least « Numeric Math Functions « Oracle PL / SQL






select least( 'A', 'B', 'C' ) from dual;

   
SQL>
SQL> select least( 'A', 'B', 'C' ) from dual;
L
-
A

1 row selected.

SQL>
SQL> --

   
    
  








Related examples in the same category

1.select least( 'X', 'x' ) from dual;
2.Use least() to limit the value
3.This script demonstrates the Least functions