日期:2011-01-25 23:11:00 来源:本站整理
<b>父子分类关系查询利用的SQL语句介绍</b>[MSSQL防范]
本文“<b>父子分类关系查询利用的SQL语句介绍</b>[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
SQL数据库中,假如需求查询父子分类关系,利用SQL语句应当若何实现呢?下面就将为您介绍父子分类关系查询利用的SQL语句的写法,供您参考.
例子以下图:
查询出来的后果多加一列,这一列的值为,当icode_ind有子分类,则该列的值为1,不然为0.能否有子类,看一下那表就很明显我的法则了.
实现的SQL语句:
1.
select a.iCode_ind,a.icode,
case when b.iCode_ind is null then 0 else 1 end
from TabA a outer apply (select top 1 iCode_ind from TabA
where icode_ind like a.icode_ind+'%' and icode_ind<>a.icode_ind) b
2.
select *,case when exists(select 1 from tb
where iCode_ind<>t.iCode_ind
and iCode_ind like t.iCode_ind+'%')
then 1 else 0 end
from tb t
3.
select iCode_ind,icode,col=case when exists(select 1 from 表名 where iCode_ind like a.iCode_ind+'%' and iCode_ind!=a.iCode_ind) then 1 else 0 end<
from 表名 a
以上是“<b>父子分类关系查询利用的SQL语句介绍</b>[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论