ইন psql
কমান্ড লাইন এই তথ্য টেবিল শীট, সঙ্গে প্রাপ্ত হয় \d+
কমান্ড। সীমাবদ্ধতাগুলিও d+
অবহিত করে NOT NULL
, এমন কিছু যা pg_catalog.pg_constraint
টেবিলে উপস্থিত নেই । একটি উদাহরণ:
# \d+ observations.stream
Table "observations.stream"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
--------+-------------------+-----------+----------+---------+----------+--------------+---------------------------------------------
id | integer | | not null | | plain | |
name | character varying | | not null | | extended | | This should be a table in the import schema
min_id | integer | | not null | | plain | |
about | character varying | | not null | | extended | |
Indexes:
"stream_pkey" PRIMARY KEY, btree (id)
"stream_name_key" UNIQUE CONSTRAINT, btree (name)
Check constraints:
"stream_id_check" CHECK (id > 0)
Referenced by:
TABLE "profile" CONSTRAINT "profile_id_stream_fkey" FOREIGN KEY (id_stream) REFERENCES stream(id)
এখানে সতর্কতাই হ'ল আপনি এইভাবে সমস্ত প্রতিবন্ধকের নাম পান না।