mysql_update
Update MySQL table data using specific conditions and values. Simplifies modifying database records through structured input for efficient data management in MySQL MCP Server.
Instructions
更新表数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | 要更新的数据 | |
tableName | Yes | 表名称 | |
where | Yes | 更新条件 |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "要更新的数据",
"type": "object"
},
"tableName": {
"description": "表名称",
"type": "string"
},
"where": {
"description": "更新条件",
"type": "object"
}
},
"required": [
"tableName",
"data",
"where"
],
"type": "object"
}