create_table
Define and generate a new table in MSSQL databases by specifying the table name and column configurations, enabling direct database structure management.
Instructions
Creates a new table in the MSSQL Database with the specified columns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columns | Yes | Array of column definitions (e.g., [{ name: 'id', type: 'INT PRIMARY KEY' }, ...]) | |
tableName | Yes | Name of the table to create |