mysql_create_table
Generate MySQL tables using structured SQL commands. Streamline table creation within MySQL databases, enabling efficient schema design and data organization.
Instructions
创建表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | 创建表的 SQL 语句 |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "创建表的 SQL 语句",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}