describe_table
Retrieve the columns, types, defaults, primary keys, and foreign keys for any shop table. Use it to map relationships among customers, products, orders, and order_items.
Instructions
Describe the schema of one table: columns (name, type, not_null, default, primary_key) and foreign keys. Use this before building any mental model of how tables relate. Returns {table, columns, foreign_keys}. Pass the table name (one of: customers, products, orders, order_items).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes |