create_table
Generate a new table in the SQLite database by executing a CREATE TABLE SQL statement, enabling structured data storage for variance analysis in conversation logs.
Instructions
Create a new table in the SQLite database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | CREATE TABLE SQL statement |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "CREATE TABLE SQL statement",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}