Een specifieke reeks ophalen:
SELECT currval('name_of_your_sequence');
Haal de laatste waarde uit de laatst gebruikte reeks:
SELECT lastval();
Raadpleeg ook de handleiding:http://www.postgresql.org /docs/current/static/functions-sequence.html
Bewerken:u kunt ook RETURNING gebruiken in uw INSERT:
INSERT INTO foo(id, name) VALUES(DEFAULT, 'bob') RETURNING id;