Table of Contents
information_schema_catalog_nameadministrable_role_authorizationsapplicable_rolesattributescharacter_setscheck_constraint_routine_usagecheck_constraintscollationscollation_character_set_applicabilitycolumn_column_usagecolumn_domain_usagecolumn_optionscolumn_privilegescolumn_udt_usagecolumnsconstraint_column_usageconstraint_table_usagedata_type_privilegesdomain_constraintsdomain_udt_usagedomainselement_typesenabled_rolesforeign_data_wrapper_optionsforeign_data_wrappersforeign_server_optionsforeign_serversforeign_table_optionsforeign_tableskey_column_usageparametersreferential_constraintsrole_column_grantsrole_routine_grantsrole_table_grantsrole_udt_grantsrole_usage_grantsroutine_privilegesroutinesschematasequencessql_featuressql_implementation_infosql_partssql_sizingtable_constraintstable_privilegestablestriggered_update_columnstriggersudt_privilegesusage_privilegesuser_defined_typesuser_mapping_optionsuser_mappingsview_column_usageview_routine_usageview_table_usageviewsThe information schema consists of a set of views that contain information about the objects defined in the current database. The information schema is defined in the SQL standard and can therefore be expected to be portable and remain stable — unlike the system catalogs, which are specific to LightDB and are modeled after implementation concerns. The information schema views do not, however, contain information about LightDB-specific features; to inquire about those you need to query the system catalogs or other LightDB-specific views.
When querying the database for constraint information, it is possible for a standard-compliant query that expects to return one row to return several. This is because the SQL standard requires constraint names to be unique within a schema, but LightDB does not enforce this restriction. LightDB automatically-generated constraint names avoid duplicates in the same schema, but users can specify such duplicate names.
   This problem can appear when querying information schema views such
   as check_constraint_routine_usage,
   check_constraints, domain_constraints, and
   referential_constraints.  Some other views have similar
   issues but contain the table name to help distinguish duplicate
   rows, e.g., constraint_column_usage,
   constraint_table_usage, table_constraints.