Skip to main content
Lists the columns and column types & properties for a given table.
DESCRIBE TABLE Syntax

Parameters

TABLE

Optional clause to avoid ambiguity:
  • if given, and a view with the given name exists instead, the command will return an error
  • if omitted, and a view with the given name exists instead, the command will be interpreted as a DESCRIBE VIEW statement

<schema name>

Name of the schema containing the table to describe

<table name>

Name of the table whose configuration will be output

Examples

To describe the example table created in the CREATE TABLE section:
DESCRIBE TABLE Example
DESCRIBE TABLE Output