Any thoughts on how to display the domain constraints in psql?
a=# create domain d as integer not null check (value > 4);
CREATE DOMAIN
a=# create domain f as text check (value > 'bob') check (value < 'zip');
CREATE DOMAIN
a=# \dD List of domainsSchema | Name | Type | Modifier
--------+------+---------+----------public | d | integer | not nullpublic | f | text |
(2 rows)
Any thoughts on how to display the check constraints?
-- Rod Taylor
Есть вопросы? Напишите нам!
Соглашаюсь с условиями обработки персональных данных
✖
By continuing to browse this website, you agree to the use of cookies. Go to Privacy Policy.