need a little help with this syntax - nextval to auto-populate not null field from sequence
create table person(person_id NUMBER(5,0) NOT NULL, given_name VARCHAR2(50), middle_name VARCHAR2(50), family_name VARCHAR2(50), constraint person_id_pk primary key (person_id))
CREATE SEQUENCE person_seq
START WITH 20
INCREMENT BY 1
NOCACHE
NOCYCLE;
SELECT person_seq.nextval
FROM DUAL;
------------------------------------------------------------
insert into person(person_id,given_name,middle_name,family_name) values (person_seq.nextval,'Robert','E.','Lee')