drop_table
Remove a table from your MSSQL database to delete data and free storage space. Specify the table name to execute this schema operation.
Instructions
Drops a table from the MSSQL Database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to drop |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "Name of the table to drop",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}