PostgreSQL: Documentation: 14: 9.17. Sequence Manipulation Functions
https://www.postgresql.org/docs/current/functions-sequence.html
Jun 16, 2022 · Function. Description. nextval ( regclass) → bigint. Advances the sequence object to its next value and returns that value. This is done atomically: even if multiple sessions execute nextval concurrently, each will safely receive a distinct sequence value. If the sequence object has been created with default parameters, successive nextval calls will return successive values beginning with 1.
DA: 39 PA: 77 MOZ Rank: 68