Schema
public
Owner
waveuser005
Descriptions
There is no description for view vwadm_constraints_check
Fields
Name | Data type | Description |
---|---|---|
dvnaam |
text |
|
dvcheckconstraintname |
text |
|
Rules
Name | Event | Instead | Condition | Description |
---|---|---|---|---|
_RETURN |
SELECT |
|
|
Indices
There are no indices for table vwadm_constraints_check
Definition
CREATE VIEW public.vwadm_constraints_check (
dvnaam,
dvcheckconstraintname)
AS
SELECT upper(pg_constraint.conname::text) AS dvnaam,
lower(pg_constraint.conname::text) AS dvcheckconstraintname
FROM pg_constraint
WHERE pg_constraint.contype = 'c'::"char" AND
upper(pg_constraint.conname::text) ~~ 'CHK_%'::text;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13 |
![]() ![]() ![]() |