I would like to use SEQUENCE support in Apache Derby 10.7. I created a sequence with the following statement:
CREATE SEQUENCE SAMPLE_SEQ AS INT MAXVALUE 999999 CYCLE;
How to select next / current value from SAMPLE_SEQ ? Could you help me with the request?
java sql derby sequence
Tomasz BΕachowicz
source share