create_table
Create new tables in MSSQL databases by defining table names and column structures with SQL types and constraints for database schema management.
Instructions
Creates a new table in the MSSQL Database with the specified columns.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tableName | Yes | Name of the table to create | |
| columns | Yes | Array of column definitions (e.g., [{ name: 'id', type: 'INT PRIMARY KEY' }, ...]) |