SHOW VIEW Syntax
The response to
SHOW VIEW is a single-record result set
with the DDL statement as the value in the DDL column, shown below with
the column separators returned by kisql.Parameters
CREATE
CREATE
Optional keyword for clarity
VIEW
VIEW
Optional clause to avoid ambiguity:
- if given, and a table with the given name exists instead, the command will return an error
- if omitted, and a table with the given name exists instead, the command will be interpreted
as a
SHOW TABLEstatement
<schema name>
<schema name>
Name of the schema containing the view to show
<view name>
<view name>
Name of the view whose DDL will be output
WITH OPTIONS
WITH OPTIONS
Optional indicator that a comma-delimited list of connection option/value assignments will
follow.All valid options from Show Table
can be used here.
Examples
To output the DDL for the example view created in the CREATE VIEW section:SHOW VIEW Example