I have already created a sequence:
create sequence mainseq as bigint start with 1 increment by 1
How do I use this sequence as the default value of a column?
create table mytable(
    id      bigint not null default mainseq     -- how?
    code    varchar(20) not null
)
 
     
     
     
    