mysql_delete
Delete specific data from MySQL tables by defining the table name and conditions using the 'mysql_delete' tool. Simplify database management with targeted data removal.
Instructions
删除表数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | 表名称 | |
where | Yes | 删除条件 |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "表名称",
"type": "string"
},
"where": {
"description": "删除条件",
"type": "object"
}
},
"required": [
"tableName",
"where"
],
"type": "object"
}