select greatest( 'ONE', 1 ) : greatest « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- greatest
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