Properties

Name: information_schema_catalog_name 
Owner: postgres 
Has rules:  
Has Triggers:  
Comment:  

Columns

Name Type Length
  catalog_name  sql_identifier  -1 
Total: 1 column(s)

SQL


CREATE VIEW information_schema_catalog_name AS
    SELECT (current_database())::sql_identifier AS catalog_name;


ALTER TABLE information_schema.information_schema_catalog_name OWNER TO postgres;

See Also

List of views