i've created a sequence that automatically creates id, and i've specified it to start from a specific number, say 100.
create sequence SEQ_I_LOVE_SQL start with 100 increment by 1
In my Java logic, the below sql statement is called
select I_LOVE_SQL.nextval from dual
This means that the id 101 is created. Let's say the logic changes, and a rollback from 101 to 100 is needed. What is the sql statement in my Java logic that can achieve that?