I've created a sequence in my Oracle database. It will increment by 1 every time when i started my application and inserted in the table. The table look like this:
create table COUNTERS_DELEGATION
(
counter_id NUMBER not null,
counter_number LONG not null,
current_date NUMBER not null
)
In the field current_date i will insert the current year.
My question is: When the year increment for example from 2016 to 2017 i want to start my sequence again from initial value 1. Is this possible?