delete_data
Executes SQL DELETE FROM queries to remove specific data from a MySQL database, enabling efficient record deletion as part of database management tasks.
Instructions
Deletes data from a table in the MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL DELETE FROM query to execute. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL DELETE FROM query to execute.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}