All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.paradox.information_schema.table_constraints.sql Maven / Gradle / Ivy

select "catalog" as constraint_catalog,
       "schema"  as constraint_schema,
       "name"    as constraint_name,
       "catalog" as table_catalog,
       "schema"  as table_schema,
       "table"   as table_name,
       type      as constraint_type,
       is_deferrable,
       initially_deferred
from information_schema.pdx_table_constraints
order by "catalog", "schema", "table", "name", type




© 2015 - 2025 Weber Informatics LLC | Privacy Policy