describe_table
Retrieve the full structure of a table, including column names, data types, and primary key membership, to identify available fields before writing SQL queries against PeopleSoft database tables.
Instructions
Get the structure of a table including all columns, their types,
and whether they're part of the primary key.
Use this tool to understand what fields are available in a table
before writing queries against it.
:param table_name: The table name (e.g., 'PROJECT', 'CA_DETAIL', 'CA_BILL_PLAN')
:return: List of columns with their properties
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes |