query_table
Retrieve data from a specified table in a MariaDB database with a customizable row limit, enabling efficient data exploration and analysis for AI assistants.
Instructions
특정 테이블에서 데이터를 조회합니다 (제한된 행 반환).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | 데이터베이스의 이름입니다. | |
limit | No | 반환할 최대 행 수 (기본값 100). | |
table | Yes | 테이블의 이름입니다. |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "데이터베이스의 이름입니다.",
"type": "string"
},
"limit": {
"default": 100,
"description": "반환할 최대 행 수 (기본값 100).",
"type": "number"
},
"table": {
"description": "테이블의 이름입니다.",
"type": "string"
}
},
"required": [
"database",
"table"
],
"type": "object"
}