Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified media/sqlgram/AnalyzeTableStmt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 9 additions & 5 deletions sql-statements/sql-statement-analyze-table.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
---
title: ANALYZE TABLE
summary: TiDB 数据库中 ANALYZE TABLE 的使用概况。
title: ANALYZE
summary: TiDB 数据库中 ANALYZE 的使用概况。
category: reference
aliases: ['/docs-cn/dev/reference/sql/statements/analyze-table/']
---

# ANALYZE TABLE
# ANALYZE

`ANALYZE TABLE` 语句用于更新 TiDB 在表和索引上留下的统计信息。执行大批量更新或导入记录后,或查询执行计划不是最佳时,建议运行 `ANALYZE TABLE`。
`ANALYZE` 语句用于更新 TiDB 在表和索引上留下的统计信息。执行大批量更新或导入记录后,或查询执行计划不是最佳时,建议运行 `ANALYZE`。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ANALYZE TABLE 语句用于更新表和索引的统计信息。执行大批量更新或导入记录后,或查询执行计划不是最佳时,建议运行 ANALYZE TABLE


当 TiDB 逐渐发现这些统计数据与预估不一致时,也会自动更新其统计数据。

目前 TiDB 收集统计信息分为全量收集和增量收集两种方式,分别通过 `ANALYZE TABLE` 和 `ANALYZE INCREMENTAL TABLE` 语句来实现。关于这两种语句的详细使用方式,可参考[统计信息简介](/statistics.md)。

## 语法图

**AnalyzeTableStmt:**
Expand Down Expand Up @@ -102,7 +104,9 @@ EXPLAIN SELECT * FROM t1 WHERE c1 = 3;

## MySQL 兼容性

`ANALYZE TABLE` 在语法上与 MySQL 类似。但 `ANALYZE TABLE` 在 TiDB 上执行所需时间可能长得多,因为它的内部运行方式不同。
* `ANALYZE TABLE` 在语法上与 MySQL 类似。但 `ANALYZE TABLE` 在 TiDB 上的执行时间可能长得多,因为它的内部运行方式不同。
Copy link
Contributor

@zhouyueyue1115 zhouyueyue1115 May 26, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • ANALYZE TABLE 在语法上与 MySQL 类似,但由于内部运行方式不同,所以 ANALYZE TABLE 在 TiDB 上的执行时间会比较长。


* 在 MySQL 上不支持 `ANALYZE INCREMENTAL TABLE` 语句,它的使用可参考[增量收集文档](/statistics.md#增量收集)。
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • MySQL 不支持 ANALYZE INCREMENTAL TABLE 语句,TiDB 支持增量收集统计信息,用法可参考增量收集文档


## 另请参阅

Expand Down