Answers for "sequence postgres"

SQL
5

sequence postgresql

CREATE SEQUENCE seq_tipo MINVALUE 1;
ALTER TABLE tipo 
ALTER codt SET DEFAULT nextval('seq_tipo');

/*insert into YOUR_COLUMN_NAME VALUES (nextval('seq_tipo'), 'value_2')*/
Posted by: Guest on January-19-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language