Summary:
I need a select query which should provide me a output with increment for the number (0001). Suggest a query which apt for the below expected output without using Sequence conditions.
Expected output:
TO_CHAR('0001')
|
|---|
| 0001 |
| 0002 |
| 0003 |
Query:
select to_char('0001') from dual;
Thanks,
Hema.