提交 9603476f 编写于 作者: M Mars Liu

fixed a mistake

上级 e0a91a2a
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Joe 需要删除数据分析库中 orders 表的数据,orders按时间分区,因为是分析部门离线使用,不需要考虑并发,下列哪些操作可以更快的删除这些数据? Joe 需要删除数据分析库中 orders 表的数据,orders按时间分区,因为是分析部门离线使用,不需要考虑并发,下列哪些操作可以更快的删除这些数据?
1. 使用 `truncate from orders`; 1. 使用 `truncate orders`;
2. 可以执行 `ALTER TABLE orders DROP PARTITION partition_name;` 删除指定分区 2. 可以执行 `ALTER TABLE orders DROP PARTITION partition_name;` 删除指定分区
3. 去掉唯一约束然后 `delete from orders where 1=1` 3. 去掉唯一约束然后 `delete from orders where 1=1`
4. 使用可写游标,一次一万行滚动删除 4. 使用可写游标,一次一万行滚动删除
...@@ -49,4 +49,4 @@ Joe 需要删除数据分析库中 orders 表的数据,orders按时间分区 ...@@ -49,4 +49,4 @@ Joe 需要删除数据分析库中 orders 表的数据,orders按时间分区
``` ```
2, 3, 4 2, 3, 4
``` ```
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册