describe_table
Retrieve the column schema of any table in the database. Use this before writing SQL queries to ensure accurate table references.
Instructions
Return the column schema for a table.
Call this before writing any SQL that references a table you haven't described yet. You can call it in parallel for multiple tables in one turn. Returns an error if the table name doesn't exist — use list_tables to see valid names.
Args: name: The exact table name, case-sensitive, as returned by list_tables.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |