.drop table 命令
適用於: ✅Microsoft網狀架構✅Azure 數據總管
從資料庫移除一或多個數據表。
注意
此命令.drop
table
只會虛刪除資料。 也就是說,無法查詢資料,但仍可從永續性儲存體中復原。 基礎記憶體成品會根據recoverability
保留原則中的 屬性進行硬式刪除,該屬性會在數據內嵌至數據表時生效。
權限
您必須至少有 資料表管理員 許可權才能執行此命令。
語法
.drop
table
TableName [ifexists
]
.drop
tables
(
TableName [,
... ])
[ifexists]
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
TableName | string |
✔️ | 要卸除之數據表的名稱。 |
ifexists |
string |
如果指定,如果數據表不存在,命令將不會失敗。 |
傳回
此命令會傳回資料庫中剩餘數據表的清單。
輸出參數 | 類型 | 描述 |
---|---|---|
TableName | string |
資料表的名稱。 |
DatabaseName | string |
數據表所屬的資料庫。 |
範例
卸除單一數據表
.drop table CustomersTable ifexists
卸除多個數據表
.drop tables (ProductsTable, ContactsTable, PricesTable) ifexists