【发布时间】:2020-07-16 21:20:29
【问题描述】:
我最近迁移到 mariadb 10.5,并且遇到了这个特定的输出,其中百分比与解释输出中的行一起显示。我找不到任何相同的文档,可能这是一个新功能。
这到底是什么意思?是关于被读取行的某种概率吗?
MariaDB [c6b2c772b91fd3d8]> explain
select
`execute_action`, `state_type`
from
`tabSuperflow Document State`
where
`parent` = 'Check Point'
and `state` = 'Pending TSM Approval - Delivery'
order by
modified desc \G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: tabSuperflow Document State
type: ref|filter
possible_keys: parent,index_on_state
key: index_on_state|parent
key_len: 563|563
ref: const
rows: 1 (17%)
Extra: Using index condition; Using where; Using filesort; Using rowid filter
1 row in set (0.001 sec)
【问题讨论】:
-
表格大概有6行吗?
-
它有 96 行。
标签: mariadb mariadb-10.5