Answers for "psql sequence"

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
0

postgres sequence name

select * from pg_sequences;
Posted by: Guest on December-02-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language