B+树查询上下级(sql实现)

简介:
     B+树查询上下级(sql实现)
 
 
use pubs
 
--drop table employee
 
create table employee
(
 empId char(32) primary key,
 empName varchar(20),
 higherUpId char(32)
)
 
insert into employee values('0001','aa',null)
 
insert into employee values('0002','bb','0001')
insert into employee values('0003','cc','0001')
 
insert into employee values('0004','dd','0002')
insert into employee values('0005','ee','0002')
 
insert into employee values('0006','ff','0003')
insert into employee values('0007','gg','0003')
 
insert into employee values('0008','hh','0004')
insert into employee values('0009','ii','0004')
 
insert into employee values('0010','jj','0007')
insert into employee values('0011','kk','0007')
 
 
 
--查下级和间接下级
create proc proc_treeDownQuery
 @id varchar(20)
as
 declare @temp varchar(2000)
 declare @tempCount nvarchar(2000)
 declare @sql varchar(5000)
 declare @count int
 
 set @sql = 'select empId from employee where higherUpId = ' + @id
 set @temp = 'select empId from employee where higherUpId = '+ @id
 
 while (1=1)
 begin
  set @tempCount = 'select @count=count(*) from employee where higherUpId in (' + @temp + ')'
  exec sp_executesql @tempCount,N'@count int output',@count output
 
  if (@count=0)
   begin
    break
   end
  else
   begin
    set @temp = 'select empId from employee where higherUpId in (' + @temp + ')'
    set @sql = @sql +  ' union ' + @temp
   end
  
 end
 
 exec(@sql)
 
 
go
 
exec proc_treeDownQuery '0001'
 

--drop proc proc_treeUpQuery
 

--查上级和间接上级
create proc proc_treeUpQuery
 @id varchar(20)
as
 declare @count int
 declare @sql varchar(5000)
 declare @temp varchar(2000)
 declare @tempCount nvarchar(2000)
 
 set @sql = 'select higherUpId from employee where empId = ' + @id
 set @temp = 'select higherUpId from employee where empId = ' + @id
 
 while (1=1)
 begin 
  set @tempCount = 'select @count=count(higherUpId) from employee where empId in (' + @temp + ')'
  exec sp_executesql @tempCount,N'@count int output',@count output
 
  if (@count=0)
   begin
    break
   end
  else
   begin
    set @temp = 'select higherUpId from employee where empId in (' + @temp + ')'
    set @sql = @sql + ' union ' + @temp
   end
 end
 
 exec(@sql)
go
 

exec proc_treeUpQuery '0009'
 
 
 

 
版权说明

  如果标题未标有<转载、转>等字则属于作者原创,欢迎转载,其版权归作者和博客园共有。
  作      者:温景良
  文章出处:http://wenjl520.cnblogs.com/  或  http://www.cnblogs.com/

分类: Oracle
0
0
« 上一篇: oracle常用sql语句语法
» 下一篇: Oracle to_char()函数的用法
posted @ 2009-04-28 23:49 温景良(Jason) Views( 1624) Comments( 0) Edit 收藏
 
相关文章
|
2天前
|
SQL 存储 缓存
如何优化SQL查询性能?
【10月更文挑战第28天】如何优化SQL查询性能?
19 10
|
9天前
|
SQL 数据库 开发者
功能发布-自定义SQL查询
本期主要为大家介绍ClkLog九月上线的新功能-自定义SQL查询。
|
16天前
|
SQL 移动开发 Oracle
SQL语句实现查询连续六天数据的方法与技巧
在数据库查询中,有时需要筛选出符合特定时间连续性条件的数据记录
|
24天前
|
SQL Java 数据库连接
如何使用`DriverManager.getConnection()`连接数据库,并利用`PreparedStatement`执行参数化查询,有效防止SQL注入。
【10月更文挑战第6天】在代码与逻辑交织的世界中,我从一名数据库新手出发,通过不断探索与实践,最终成为熟练掌握JDBC的开发者。这段旅程充满挑战与惊喜,从建立数据库连接到执行SQL语句,再到理解事务管理和批处理等高级功能,每一步都让我对JDBC有了更深的认识。示例代码展示了如何使用`DriverManager.getConnection()`连接数据库,并利用`PreparedStatement`执行参数化查询,有效防止SQL注入。
64 5
|
24天前
|
SQL 数据挖掘 数据库
SQL查询每秒的数据:技巧、方法与性能优化
id="">SQL查询功能详解 SQL(Structured Query Language,结构化查询语言)是一种专门用于与数据库进行沟通和操作的语言
|
24天前
|
SQL 移动开发 大数据
SQL语句查询连续六天满足条件的记录
在数据库管理和数据分析中,我们经常需要查询符合特定时间范围内连续几天的记录
|
5天前
|
SQL 关系型数据库 MySQL
mysql编写sql脚本:要求表没有主键,但是想查询没有相同值的时候才进行插入
mysql编写sql脚本:要求表没有主键,但是想查询没有相同值的时候才进行插入
12 0
|
16天前
|
SQL 数据可视化 BI
SQL语句及查询结果解析:技巧与方法
在数据库管理和数据分析中,SQL语句扮演着至关重要的角色
|
22天前
|
SQL 监控 关系型数据库
使用SQL语句查询操作耗时的技巧与方法
在数据库管理和优化过程中,了解SQL查询操作的耗时是至关重要的
|
22天前
|
SQL
创建分组总计查询的SQL技巧与方法
在SQL中,创建分组总计查询(也称为聚合查询)是一项非常基础且重要的技能

热门文章

最新文章