mysql_drop_table
Remove a specified table from a MySQL database using natural language commands on the MySQL MCP Server. Simplifies table deletion for streamlined database management.
Instructions
删除表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | 表名称 |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "表名称",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}