Answers for "postgresql get table sequence name"

SQL
0

postgres sequence name

select * from pg_sequences;
Posted by: Guest on December-02-2021
0

how to get table id sequence postgres

SELECT table_name, column_name, column_default from
information_schema.columns where table_name='testing';
Posted by: Guest on September-27-2021

Code answers related to "postgresql get table sequence name"

Code answers related to "SQL"

Browse Popular Code Answers by Language