update_data
Execute SQL UPDATE statements to modify data in MySQL database tables using the MySQL MCP Server, with results returned in JSON format.
Instructions
更新 MySQL 数据库表中的数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 要执行的 SQL UPDATE 语句 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "要执行的 SQL UPDATE 语句",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}