qlty_columnSummary
Generate column summary statistics for a specified table in a Teradata database. Input database and table names to receive formatted results with metadata for analysis.
Instructions
Get the column summary statistics for a table.
Arguments: database_name - name of the database table_name - table name to analyze
Returns: ResponseType: formatted response with query results + metadata
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_name | Yes | ||
| table_name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Database Name"
    },
    "table_name": {
      "title": "Table Name",
      "type": "string"
    }
  },
  "required": [
    "database_name",
    "table_name"
  ],
  "title": "handle_qlty_columnSummaryArguments",
  "type": "object"
}