1 回答

TA貢獻1807條經(jīng)驗 獲得超9個贊
您可以檢索查詢的執(zhí)行計劃,其中包括查詢中涉及的所有表。
例如:
create table a (b int);
create table c (d int);
explain
select a.*
from a
join c on c.d = a.b
結(jié)果:
id? select_type? table? partitions? type? pos_keys key? ?key_len? ref? ?rows? filt Extra? ? ? ? ?
--- ------------ ------ ----------- ----- -------- ----- -------- ----- ----- ---- -------------?
1? ?SIMPLE? ? ? ?a? ? ? null? ? ? ? ALL? ?null? ? ?null? null? ? ?null? 1? ? ?100? null? ? ? ? ??
1? ?SIMPLE? ? ? ?c? ? ? null? ? ? ? ALL? ?null? ? ?null? null? ? ?null? 1? ? ?100? Using where..?
在這里您可以看到第三列包含查詢涉及的表的名稱。執(zhí)行計劃采用表格格式(默認(rèn))或 JSON 格式。后者比這個有更多的信息。
- 1 回答
- 0 關(guān)注
- 123 瀏覽
添加回答
舉報