Definition:

  • Provides information about the columns in a table:

DESCRIBE

  • {EXPLAIN | DESCRIBE | DESC}
    • tbl_name
    • [col_name | wild]
  • {EXPLAIN | DESCRIBE | DESC}
    • [explain_type]
    • [INTO variable]
    • {[schema_spec] explainable_stmt | FOR CONNECTION connection_id}
  • {EXPLAIN | DESCRIBE | DESC}
    • ANALYZE
    • [FORMAT = TREE]
    • [schema_spec]
    • select_statement

References