I have this query I use against SQL Server that I need to execute against an Oracle database.
I can't find an equivalent Oracle function for IsNumeric.
I use this web site for help on writing Oracle queries, maybe it is outdated.Code:SELECT CASE WHEN IsNumeric(SubStr(PERSON.NAME_FULL_FORMATTED,1,1)) = 1 Then PERSON.LASTNAME + ', ' + PERSON.FIRSTNAME ELSE PERSON.NAME_FULL_FORMATTED END
http://www.techonthenet.com/oracle/f...ndex_alpha.php




Reply With Quote