views
views provides information about all user-defined views.
The following fields are provided in views:
| Field | Description | 
|---|---|
| TABLE_CATALOG | The name of the catalog to which the view belongs. This value is always def. | 
| TABLE_SCHEMA | The name of the database to which the view belongs. | 
| TABLE_NAME | The name of the view. | 
| VIEW_DEFINITION | The SELECTstatement that provides the definition of the view. | 
| CHECK_OPTION | The value of the CHECK_OPTIONattribute. The value is one ofNONE,CASCADE, orLOCAL. | 
| IS_UPDATABLE | Whether the view is updatable. The flag is set to YES(true) ifUPDATEandDELETE(and similar operations) are legal for the view. Otherwise, the flag is set toNO(false). If a view is not updatable, statements suchUPDATE,DELETE, andINSERTare illegal and are rejected. | 
| DEFINER | The user of the user who created the view. | 
| SECURITY_TYPE | |
| CHARACTER_SET_CLIENT | |
| COLLATION_CONNECTION |