update_data
Execute SQL UPDATE queries to modify records in MySQL databases. Designed for use with the MySQL MCP Server, enabling efficient data management and updates.
Instructions
Updates data in a table in the MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL UPDATE query to execute. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL UPDATE query to execute.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}