mysql 如何查询一个带有树结构的表的数据
比如地区表吧,里面有省、市、区、地区、小区,我要通过省查到这个省下面的四级所有数据,怎么弄?谁能帮我写一个function?或者存储过程也行,特别提示不要复制现在百度谷歌...
比如地区表吧,里面有省、市、区、地区、小区,我要通过省查到这个省下面的四级所有数据,怎么弄?谁能帮我写一个function?或者存储过程也行,特别提示不要复制现在百度谷歌能查找的那些,我都看不过了,不需复制过来!
展开
4个回答
展开全部
当然这种结构就不要追求什么效率了。如果要效率高的,只能改表结构。
1:select p2.id from table p1 ,table p2 where p1.id=p2.pid and p1.id=0
2:假设表名是tree
SQL codeselect distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=0;
select distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=2;
3.通过程序或数据库的store procedure来实现了。 在mySQL中无法以一句SQL实现。
1:select p2.id from table p1 ,table p2 where p1.id=p2.pid and p1.id=0
2:假设表名是tree
SQL codeselect distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=0;
select distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=2;
3.通过程序或数据库的store procedure来实现了。 在mySQL中无法以一句SQL实现。
展开全部
这种叫无限级分类。,一般用递归的思想实现,无线的分类
具体的你可以百度搜索 无限级分类
具体的你可以百度搜索 无限级分类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你总得把表结构写出来吧
追问
就三个字段:id 、pid、areaName
记录:
1、0、中国
2、1、广东省
3、2、深圳市
4、3、福田区
5、4、八卦岭
查询广东省下面的所有地区节点。传递一个id给你,就是广东的id。
追答
select * from test123 t where t.id = 2
union
select * from test123 t where t.pid = 2
union
select * from test123 t where t.pid in (select id from test123 t where t.pid = 2)
union
select * from test123 t where t.pid in (select id from test123 t where t.pid in (select id from test123 t where t.pid = 2))
你这边最多4级的话,这么写就可以了应该
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个叫无限极分类 这个用php 或你所用的语言来写,javascript写这个理念是不对的。 采用面向对象的方法 用数组的思维 很容易OK的 直接要代码,我感觉 没必要
追问
你可以试试怎么写,我是没写出来。所以才问的。
追答
child($arr,$pid);
if(empty($child)){
return null;
}
foreach ($child as $k => $v)
{
$act = $this ->childList($arr,$v['cat_id']);
if($act!=null)
{
$child[$k]['child'] = $act;
}
}return $child;
}
}
?>
这个是我以前一个商城项目的无线分类的导航远吗 你看看吧。 主要是 数据库设计字段的合理就行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询