hetu-core/hetu-docs/zh/sql/drop-table.md

28 lines
460 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# DROP TABLE
## 摘要
``` sql
DROP TABLE [ IF EXISTS ] table_name
```
## 说明
删除一个现有的表。
如果使用可选的 `IF EXISTS` 子句,则在该表不存在时禁止显示错误。
## 示例
删除表 `orders_by_date`
DROP TABLE orders_by_date
如果表 `orders_by_date` 存在,则删除该表:
DROP TABLE IF EXISTS orders_by_date
## 另请参见
[ALTER TABLE](./alter-table.md)、[CREATE TABLE](./create-table.md)