PostgreSQL provides some simple procedures to interact with sequences. To find
the next value from a primary key sequence, the nextval
function can be used
to find the next value from the sequence.
SELECT nextval('your_table_id_seq');
-- nextval
-- 629