qlty_distinctCategories
Extract unique categories from a specified column in a Teradata database table to assess data quality or analyze column values. Requires database, table, and column names as inputs.
Instructions
Get the destinct categories from column in a table.
Arguments: database_name - name of the database table_name - table name to analyze column_name - column name to analyze
Returns: ResponseType: formatted response with query results + metadata
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| col_name | Yes | ||
| database_name | Yes | ||
| table_name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "col_name": {
      "title": "Col Name",
      "type": "string"
    },
    "database_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Database Name"
    },
    "table_name": {
      "title": "Table Name",
      "type": "string"
    }
  },
  "required": [
    "database_name",
    "table_name",
    "col_name"
  ],
  "title": "handle_qlty_distinctCategoriesArguments",
  "type": "object"
}