4 The view views contains all views defined in the current database. Only
5 those views are shown that the current user has access to (by way of
6 being the owner or having some privilege).
8 Table 35.64. views Columns
14 table_catalog sql_identifier
16 Name of the database that contains the view (always the current
19 table_schema sql_identifier
21 Name of the schema that contains the view
23 table_name sql_identifier
27 view_definition character_data
29 Query expression defining the view (null if the view is not owned by a
30 currently enabled role)
32 check_option character_data
34 CASCADED or LOCAL if the view has a CHECK OPTION defined on it, NONE if
37 is_updatable yes_or_no
39 YES if the view is updatable (allows UPDATE and DELETE), NO if not
41 is_insertable_into yes_or_no
43 YES if the view is insertable into (allows INSERT), NO if not
45 is_trigger_updatable yes_or_no
47 YES if the view has an INSTEAD OF UPDATE trigger defined on it, NO if
50 is_trigger_deletable yes_or_no
52 YES if the view has an INSTEAD OF DELETE trigger defined on it, NO if
55 is_trigger_insertable_into yes_or_no
57 YES if the view has an INSTEAD OF INSERT trigger defined on it, NO if