Hóa ra là đủ dễ dàng:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
hoặc nếu bảng đã được tạo:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(cảm ơn Matt Strom về sự chỉnh sửa!)