Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 1.57 KB

10.9 Controlling the Query Optimizer.md

File metadata and controls

18 lines (10 loc) · 1.57 KB

原文地址:https://dev.mysql.com/doc/refman/8.0/en/controlling-optimizer.html

10.9 Controlling the Query Optimizer

MySQL provides optimizer control through system variables that affect how query plans are evaluated, switchable optimizations, optimizer and index hints, and the optimizer cost model.

The server maintains histogram statistics about column values in the column_statistics data dictionary table (see Section 10.9.6, “Optimizer Statistics”). Like other data dictionary tables, this table is not directly accessible by users. Instead, you can obtain histogram information by querying INFORMATION_SCHEMA.COLUMN_STATISTICS, which is implemented as a view on the data dictionary table. You can also perform histogram management using the ANALYZE TABLE statement.