My SQL query is followed:
SELECT PLANS.PLAN_NO, .............
when data is showed on CR it has the format 55,409.00 for expamle. I want the format is 55409 so I change my SQL query to
SELECT TO_NUMBER(PLANS.PLAN_NO,'9
9999')
but nothing changes.
Do you have any idea?
Start Free Trial