Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
\dでコマンドを使用するpsqlと、すべてのユーザーのテーブルとシーケンスのリストが表示されます。
\d
psql
特定のユーザーが所有者であるテーブルのみを表示するコマンドはありますか?
psql コマンドではありません:
select c.relname, relkind from pg_class c inner join pg_roles r on r.oid = c.relowner where r.rolname = 'that_owner' and c.relkind = 'r' order by c.relname
テーブルとシーケンスが必要な場合:
and c.relkind in ('r', 'S')