赞
踩
在mysql中只有Nested Loop Join
就是通过驱动表的结果集作为循环基础数据,然后一条一条的通过该结果集中的数据作为过滤条件到下一个表中查询数据
比如
select m.subject msg_subject, c.content msg_content
from user_group g,group_message m,group_message_content c
where g.user_id = 1
and m.group_id = g.group_id
and c.group_msg_id = m.id
其实就是
for each record g_rec in table user_group that g_rec.user_id=1{
for each record m_rec in group_message that m_rec.group_id=g_rec.group_id{
for each record c_rec in group_message_content that c_rec.group_msg_id=m_rec.id
pass the (g_rec.user_id, m_rec.subject, c_rec.content) row
combination to output;
}
}
其他的算法还有Merge Join
要现对两张表进行排序,这样,只要堆两张表扫描一次就可以了。
Hash Join
无论如何,join都是一种非常耗费性能的操作。
将表中每一列放入一个hash结构中,最终,这个hash结构中有多少个key,也就是去除重复后的结果。
所以,在当distinct结果集较大时,该方法的内存消耗成为瓶颈。
先对col进行排序,排序的事件复杂度为nlogn,空间复杂度为1。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。