list-fields
Retrieve the field list of a specified table in a database by providing the database ID, schema name, and table name, enabling structured data access for analysis.
Instructions
获取指定表的字段列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
databaseId | Yes | 数据库ID | |
schema | Yes | Schema名称 | |
tableName | Yes | 表名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"databaseId": {
"description": "数据库ID",
"type": "number"
},
"schema": {
"description": "Schema名称",
"type": "string"
},
"tableName": {
"description": "表名",
"type": "string"
}
},
"required": [
"databaseId",
"schema",
"tableName"
],
"type": "object"
}