Files
doris/docs/zh-CN/sql-reference/sql-statements/Data Definition/TRUNCATE TABLE.md

54 lines
1.6 KiB
Markdown

---
{
"title": "TRUNCATE TABLE",
"language": "zh-CN"
}
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
# TRUNCATE TABLE
## description
该语句用于清空指定表和分区的数据
语法:
TRUNCATE TABLE [db.]tbl[ PARTITION(p1, p2, ...)];
说明:
1. 该语句清空数据,但保留表或分区。
2. 不同于 DELETE,该语句只能整体清空指定的表或分区,不能添加过滤条件。
3. 不同于 DELETE,使用该方式清空数据不会对查询性能造成影响。
4. 该操作删除的数据不可恢复。
5. 使用该命令时,表状态需为 NORMAL,即不允许正在进行 SCHEMA CHANGE 等操作。
## example
1. 清空 example_db 下的表 tbl
TRUNCATE TABLE example_db.tbl;
2. 清空表 tbl 的 p1 和 p2 分区
TRUNCATE TABLE tbl PARTITION(p1, p2);
## keyword
TRUNCATE,TABLE