Answers for "postgresql update sequence to max value"

SQL
1

postgres set sequence value to max id

SELECT setval('table_id_seq', (SELECT MAX(id) FROM table));
Posted by: Guest on January-19-2021

Code answers related to "postgresql update sequence to max value"

Code answers related to "SQL"

Browse Popular Code Answers by Language