Bu şema hakkında bilgi edinmek için psql komutunda nokta ile şema adını kullanın.
Kurmak:
test=
CREATE SCHEMA
test=
CREATE TABLE
test=
CREATE TABLE
İlişki listesini şurada göster test_schema
:
test=
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
Tanımı göster :
test=
Table "test_schema.test_table"
Column | Type | Modifiers
id | integer |
Tüm tabloları şu konumda göster test_schema
:
test=
Table "test_schema.test_table"
Column | Type | Modifiers
id | integer |
Table "test_schema.test_table_2"
Column | Type | Modifiers
id | integer |
vb...