]> begriffs open source - ai-pg/blob - full-docs/html/infoschema-views.html
Include links to all subsection html pages, with shorter paths too
[ai-pg] / full-docs / html / infoschema-views.html
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>35.66. views</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot" /><link rel="prev" href="infoschema-view-table-usage.html" title="35.65. view_table_usage" /><link rel="next" href="server-programming.html" title="Part V. Server Programming" /></head><body id="docContent" class="container-fluid col-10"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">35.66. <code class="literal">views</code></th></tr><tr><td width="10%" align="left"><a accesskey="p" href="infoschema-view-table-usage.html" title="35.65. view_table_usage">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="information-schema.html" title="Chapter 35. The Information Schema">Up</a></td><th width="60%" align="center">Chapter 35. The Information Schema</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 18.0 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="server-programming.html" title="Part V. Server Programming">Next</a></td></tr></table><hr /></div><div class="sect1" id="INFOSCHEMA-VIEWS"><div class="titlepage"><div><div><h2 class="title" style="clear: both">35.66. <code class="literal">views</code> <a href="#INFOSCHEMA-VIEWS" class="id_link">#</a></h2></div></div></div><p>
3    The view <code class="literal">views</code> contains all views defined in the
4    current database.  Only those views are shown that the current user
5    has access to (by way of being the owner or having some privilege).
6   </p><div class="table" id="id-1.7.6.70.3"><p class="title"><strong>Table 35.64. <code class="structname">views</code> Columns</strong></p><div class="table-contents"><table class="table" summary="views Columns" border="1"><colgroup><col /></colgroup><thead><tr><th class="catalog_table_entry"><p class="column_definition">
7        Column Type
8       </p>
9       <p>
10        Description
11       </p></th></tr></thead><tbody><tr><td class="catalog_table_entry"><p class="column_definition">
12        <code class="structfield">table_catalog</code> <code class="type">sql_identifier</code>
13       </p>
14       <p>
15        Name of the database that contains the view (always the current database)
16       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
17        <code class="structfield">table_schema</code> <code class="type">sql_identifier</code>
18       </p>
19       <p>
20        Name of the schema that contains the view
21       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
22        <code class="structfield">table_name</code> <code class="type">sql_identifier</code>
23       </p>
24       <p>
25        Name of the view
26       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
27        <code class="structfield">view_definition</code> <code class="type">character_data</code>
28       </p>
29       <p>
30        Query expression defining the view (null if the view is not
31        owned by a currently enabled role)
32       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
33        <code class="structfield">check_option</code> <code class="type">character_data</code>
34       </p>
35       <p>
36        <code class="literal">CASCADED</code> or <code class="literal">LOCAL</code> if the view
37        has a <code class="literal">CHECK OPTION</code> defined on it,
38        <code class="literal">NONE</code> if not
39       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
40        <code class="structfield">is_updatable</code> <code class="type">yes_or_no</code>
41       </p>
42       <p>
43        <code class="literal">YES</code> if the view is updatable (allows
44        <code class="command">UPDATE</code> and <code class="command">DELETE</code>),
45        <code class="literal">NO</code> if not
46       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
47        <code class="structfield">is_insertable_into</code> <code class="type">yes_or_no</code>
48       </p>
49       <p>
50        <code class="literal">YES</code> if the view is insertable into (allows
51        <code class="command">INSERT</code>), <code class="literal">NO</code> if not
52       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
53        <code class="structfield">is_trigger_updatable</code> <code class="type">yes_or_no</code>
54       </p>
55       <p>
56        <code class="literal">YES</code> if the view has an <code class="literal">INSTEAD OF</code>
57        <code class="command">UPDATE</code> trigger defined on it, <code class="literal">NO</code> if not
58       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
59        <code class="structfield">is_trigger_deletable</code> <code class="type">yes_or_no</code>
60       </p>
61       <p>
62        <code class="literal">YES</code> if the view has an <code class="literal">INSTEAD OF</code>
63        <code class="command">DELETE</code> trigger defined on it, <code class="literal">NO</code> if not
64       </p></td></tr><tr><td class="catalog_table_entry"><p class="column_definition">
65        <code class="structfield">is_trigger_insertable_into</code> <code class="type">yes_or_no</code>
66       </p>
67       <p>
68        <code class="literal">YES</code> if the view has an <code class="literal">INSTEAD OF</code>
69        <code class="command">INSERT</code> trigger defined on it, <code class="literal">NO</code> if not
70       </p></td></tr></tbody></table></div></div><br class="table-break" /></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="infoschema-view-table-usage.html" title="35.65. view_table_usage">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="information-schema.html" title="Chapter 35. The Information Schema">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="server-programming.html" title="Part V. Server Programming">Next</a></td></tr><tr><td width="40%" align="left" valign="top">35.65. <code class="literal">view_table_usage</code> </td><td width="20%" align="center"><a accesskey="h" href="index.html" title="PostgreSQL 18.0 Documentation">Home</a></td><td width="40%" align="right" valign="top"> Part V. Server Programming</td></tr></table></div></body></html>