Skip to Content
MySQL 8 Cookbook
book

MySQL 8 Cookbook

by Karthik Appigatla
January 2018
Intermediate to advanced
446 pages
12h 57m
English
Packt Publishing
Content preview from MySQL 8 Cookbook

Using EXPLAIN

The EXPLAIN plan shows all the partitions scanned for a query. If you run the EXPLAIN plan for SELECT * FROM <table>, it lists all the partitions, for example:

mysql> EXPLAIN SELECT * FROM employees\G*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: employees   partitions: p1980,p1990,p2000,p2010,p2020,pmax         type: ALLpossible_keys: NULL          key: NULL      key_len: NULL          ref: NULL         rows: 292695     filtered: 100.00        Extra: NULL1 row in set, 1 warning (0.00 sec)
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

MySQL Cookbook

MySQL Cookbook

Paul DuBois
Advanced MySQL 8

Advanced MySQL 8

Eric Vanier, Birju Shah, Tejaswi Malepati

Publisher Resources

ISBN: 9781788395809Other