এই স্কিমা সম্পর্কে তথ্য পেতে পিএসএইচএল কমান্ডের সময়কালের সাথে স্কিমার নাম ব্যবহার করুন।
সেটআপ:
test=# create schema test_schema;
CREATE SCHEMA
test=# create table test_schema.test_table (id int);
CREATE TABLE
test=# create table test_schema.test_table_2 (id int);
CREATE TABLE
সম্পর্কের তালিকা এতে দেখান test_schema
:
test=# \dt test_schema.
List of relations
Schema | Name | Type | Owner
-------------+--------------+-------+----------
test_schema | test_table | table | postgres
test_schema | test_table_2 | table | postgres
(2 rows)
test_schema.test_table
সংজ্ঞা দেখান :
test=# \d test_schema.test_table
Table "test_schema.test_table"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
সমস্ত সারণী এতে দেখান test_schema
:
test=# \d test_schema.
Table "test_schema.test_table"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
Table "test_schema.test_table_2"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
ইত্যাদি ...