Using sql substring function

85421=25
123098=125

want to select values after = in oracle

You mean a PHP substring function?

SUBSTR selects from a given index, you need to find that index first. INSTR will find that, so something like

SUBSTR(the_string_here, INSTR(the_string_here, '=') + 1)

Should work I think.