Mysql树形递归查询的实现方法

作者:javahih 时间:2024-01-14 08:05:16 

前言

对于数据库中的树形结构数据,如部门表,有时候,我们需要知道某部门的所有下属部分或者某部分的所有上级部门,这时候就需要用到mysql的递归查询

最近在做项目迁移,Oracle版本的迁到Mysql版本,遇到有些oracle的函数,mysql并没有,所以就只好想自定义函数或者找到替换函数的方法进行改造。

Oracle递归查询

oracle实现递归查询的话,就可以使用start with ... connect by

connect by递归查询基本语法是:

select 1 from 表格 start with ... connect by prior id = pId

start with:表示以什么为根节点,不加限制可以写1=1,要以id为123的节点为根节点,就写为start with id =123

connect by:connect by是必须的,start with有些情况是可以省略的,或者直接start with 1=1不加限制

prior:prior关键字可以放在等号的前面,也可以放在等号的后面,表示的意义是不一样的,比如 prior id = pid,就表示pid就是这条记录的根节点了

具体可以参考我以前写的一篇oracle方面的博客:https://www.jb51.net/article/156306.htm

Oracle方面的实现


<select id="listUnitInfo" resultType="com.admin.system.unit.model.UnitModel" databaseId="oracle">
select distinct u.unit_code,
u.unit_name,
u.unit_tel,
u.para_unit_code
from lzcity_approve_unit_info u
start with 1 = 1
<if test="unitCode != null and unitCode !=''">
and u.unit_code = #{unitCode}
</if>
<if test="unitName!=null and unitName!=''">
and u.unit_name like '%'|| #{unitName} ||'%'
</if>
connect by prior u.unit_code = u.para_unit_code
and u.unit_code &lt;>u.para_unit_code
</select>

Mysql递归查询

下面主要介绍Mysql方面的实现,Mysql并没有提供类似函数,所以只能通过自定义函数实现,网上很多这种资料,不过已经不知道那篇是原创了,这篇博客写的不错,https://www.jb51.net/database/201209/152513.html, 下面我也是用作者提供的方法实现自己的,先感谢作者的分享

这里借用作者提供的自定义函数,再加上Find_in_set函数 find_in_set(u.unit_code,getunitChildList(#{unitCode})) ,getunitChildList是自定义函数


<select id="listUnitInfo" resultType="com.admin.system.unit.model.UnitModel" databaseId="mysql">
select distinct u.unit_code,
 u.unit_name,
 u.unit_tel,
 u.para_unit_code
 from t_unit_info u
 <where>
 <if test="unitCode != null and unitCode !=''">
 and find_in_set(u.unit_code,getunitChildList(#{unitCode}))
 </if>
 <if test="unitName!=null and unitName!=''">
 and u.unit_name like concat('%', #{unitName} ,'%')
 </if>
 </where>
</select>

getUnitChildList自定义函数


DELIMITER $$

USE `gd_base`$$

DROP FUNCTION IF EXISTS `getUnitChildList`$$

CREATE DEFINER=`root`@`%` FUNCTION `getUnitChildList`(rootId INT) RETURNS VARCHAR(1000) CHARSET utf8
BEGIN
DECLARE sChildList VARCHAR(1000);
DECLARE sChildTemp VARCHAR(1000);
SET sChildTemp =CAST(rootId AS CHAR);
WHILE sChildTemp IS NOT NULL DO
IF (sChildList IS NOT NULL) THEN
 SET sChildList = CONCAT(sChildList,',',sChildTemp);
ELSE
SET sChildList = CONCAT(sChildTemp);
END IF;
SELECT GROUP_CONCAT(unit_code) INTO sChildTemp FROM LZCITY_APPROVE_UNIT_INFO WHERE FIND_IN_SET(para_unit_code,sChildTemp)>0;
END WHILE;
RETURN sChildList;
END$$

DELIMITER ;

来源:http://www.cnblogs.com/mzq123/p/10381216.html

标签:mysql,递归,查询
0
投稿

猜你喜欢

  • 浅谈Golang 切片(slice)扩容机制的原理

    2024-04-29 13:06:20
  • 详解Python如何获取列表(List)的中位数

    2022-02-01 02:35:37
  • 实例操作MySQL短链接

    2024-01-16 00:07:42
  • Pygame实战之实现扎气球游戏

    2023-06-17 10:17:43
  • 浅谈PHP错误类型及屏蔽方法

    2023-11-23 10:26:46
  • 纯ASP结合VML生成完美图-折线图

    2010-05-11 16:50:00
  • MyEclipse连接Mysql数据库的方法(一)

    2024-01-23 11:31:29
  • Python Numpy学习之索引及切片的使用方法

    2021-09-04 02:59:01
  • matplotlib调整子图间距,调整整体空白的方法

    2021-12-17 15:06:58
  • 微信小程序实现计算器(含历史记录)

    2024-04-17 10:30:20
  • Golang多线程爬虫高效抓取大量数据的利器

    2024-02-20 06:24:44
  • MySQL 复制表的方法

    2024-01-21 02:22:50
  • MySql数据类型教程示例详解

    2024-01-27 05:23:47
  • python 实现调用子文件下的模块方法

    2022-02-02 16:39:38
  • 使用Javascript动态增加,删除表格

    2008-02-03 19:15:00
  • 带你快速搞定Mysql优化

    2024-01-26 19:25:37
  • python条件语句和while循环语句

    2023-08-31 06:17:56
  • 原生js实现瀑布流效果

    2023-09-04 07:11:02
  • 利用Python制作简易的核酸检测日历

    2022-02-04 00:55:53
  • JavaScript 中获取数组最后一个元素方法汇总

    2024-06-07 15:25:25
  • asp之家 网络编程 m.aspxhome.com