日期:2011-01-25 23:11:00 来源:本站整理
<b>实现子孙树查询的经典SQL语句</b>[MSSQL防范]
本文“<b>实现子孙树查询的经典SQL语句</b>[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
下面介绍的SQL语句非常经典,该SQL语句实现子孙树查询,该SQL语句可以直接在查询解析器中履行,供您参考.
<
- --生成表
- create table MENU(id int,mname char(50),parent int)
- --插入数据
- insert into MENU
- select 1,'新闻',Null union all
- select 2,'房产',Null union all
- select 3,'科技新闻',1 union all
- select 4,'社会新闻',1 union all
- select 5, 'IT新闻',3 union all
- select 6, '航天新闻',3
- --实现查询新闻子孙树
- Declare @s varchar(1000)
- select @s=','+cast(id as varchar(20))+'' from MENU where id=1
- while @@rowCount>0
- --charindex:返回字符串中指定表达式的起始位置
- select @s=@s+','+cast(id as varchar) from MENU
- where charindex(','+cast(id as varchar)+',',@s+',')=0
- and charindex(','+cast(parent as varchar)+',',@s+',')>0
- select * from MENU where charindex(','+cast(id as varchar)+',',@s+',')>0
- --删除表
- drop table MENU
以上是“<b>实现子孙树查询的经典SQL语句</b>[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论