MySQL中使用UNION进行两表合并,去重导致效率低下,请问如何优化
3 回答
紫衣仙女
TA贡献1839条经验 获得超15个赞
不应用ALL关键字就可以删除重复的行,例如:
select col1,col2 from t1
union
select col1,col2 from t2
union
select col1,col2 from t3;
多表联合并保留所有的行:
select col1,col2 from t1
union all
select col1,col2 from t2
union all
select col1,col2 from t3;
浮云间
TA贡献1829条经验 获得超4个赞
MySQL中使用UNION进行两表合并,去重导致效率低下,请问如何优化
mysql> explain select * from wp_options limit 1\G;
id: 1
select_type: SIMPLE
table: wp_options
partitions: NULL
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 136
filtered: 100.00
Extra: NULL
1 row in set, 1 warning (0.01 sec)
mysql> show session status like 'Handler_read%';
添加回答
举报
0/150
提交
取消