select greatest( 'ONE', 1 ) : greatest « Numeric Math Functions « Oracle PL / SQL






select greatest( 'ONE', 1 )

   
SQL>
SQL> select greatest( 'ONE', 1 )
  2  from dual;
GRE
---
ONE

1 row selected.

SQL>
SQL> --

   
    
  








Related examples in the same category

1.GREATEST() returns the greatest of the list of expressions.
2.select greatest( 'A', 'a' )from dual;
3.select greatest( 1, 5, 10 )
4.GREATEST(12*6,148/2,73) LEAST(12*6,148/2,73)
5.This script demonstrates the Greatest functions