PostgreSQL 10.x What query will give the name of all sequences in a database and the current or next value for each sequence? This will give me everything except for the next value in the sequence. SELECT * FROM information_schema.sequences; Thanks, Lance |