create_table
Execute SQL CREATE TABLE queries to establish new tables in a MySQL database, enabling structured data storage and management for efficient operations.
Instructions
Creates a new table in the MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL CREATE TABLE query to execute. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL CREATE TABLE query to execute.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}