CREATE A TABLE WITH A PRIMARY KEY

4. Create a table with a primary key:

create table seqtest(c1 number,c2 varchar2(10));alter table seqtest add constraint seqtest_pk primary key (c1);