create table test (id varchar2(20)); Table Created. create sequence s1; insert into test values(s1.nextval); 1 row inserted.
Comment