I am facing a unique challenge, the problem I'm facing is something like this:
I need to ignore the zero from the input: For example
Example 1
Input --> 1580
output --> 158
Example 2
Input --> 3008
output --> 38
Is there any built function or through normal query I can solve the above problem or do I need to write custom pl/sql code.
Please suggest.
REPLACE(TO_CHAR(yourcol),'0','')