Temat: relkind - pobranie nazwy tabeli + sequence
Witam,
Mam zapytanie listujące tabele w bazie :
Select relname as tablename from pg_class where relkind in ('r') and relname not like 'pg_%' and relname not like 'sql_%' order by tablename;
Jak zrobić aby pobrało mi jednocześnie nazwę sequence dla danej tabeli? W manualu jest, że wystarczy zmienić 'r' na 'S' ale nie wychodzi mi to w jednym zapytaniu.
Będę jeszcze potrzebował wartość nextval('tabela_id_seq').