list_tables
Display all tables within a specified MariaDB database to enable exploration and interaction with its structure and content.
Instructions
특정 데이터베이스 내의 모든 테이블 목록을 보여줍니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | 데이터베이스의 이름입니다. |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "데이터베이스의 이름입니다.",
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}