myTable
UNID 9 10
UNID is a VARCHAR2
select max(UNID) from myTable
returns the UNID with the highest lexicographic value (9).
how do i select the UNID with the highest integer value (10)?
UNID 9 10
UNID is a VARCHAR2
select max(UNID) from myTable
returns the UNID with the highest lexicographic value (9).
how do i select the UNID with the highest integer value (10)?