Create a sequence specifying the minvalue : Create Sequence « Sequence « PostgreSQL






Create a sequence specifying the minvalue


postgres=#
postgres=# -- Creating a sequence
postgres=#
postgres=# CREATE SEQUENCE myseq MINVALUE 0;
CREATE SEQUENCE
postgres=#
postgres=# drop sequence myseq;
DROP SEQUENCE
postgres=#
postgres=#
           
       








Related examples in the same category

1.Creation of a sequence