mysql 父子结构排序_mysql 父子结构排序 | 学步园

项目中经常会遇到父子结构显示的问题,不同的数据库有不同的写的方式,比如SqlServer中用with union 实现,而Mysql则没有这么方便的语句。

如下category表,食品有pizaa,buger,coffee,而pizza又分了加cheese几种,如何将他们的父子结构表现出来呢?

CREATE TABLE category(

id INT(10),

parent_id INT(10),

name VARCHAR(50)

);

INSERT INTO category (id, parent_id, name) VALUES

(1, 0, 'pizza'), --node 1

(2, 0, 'burger'), --node 2

(3, 0, 'coffee'), --node 3

(4, 1, 'piperoni'), --node 1.1

(5, 1, 'cheese'), --node 1.2

(6, 1, 'vegetariana'), --node 1.3

(7, 5, 'extra cheese'); --node 1.2.1

stackoverflow上一个人给了一个很好的解决方案:

1. 创建一个函数

delimiter ~

DROP FUNCTION getPriority~

CREATE FUNCTION getPriority (inID INT) RETURNS VARCHAR(255) DETERMINISTIC

begin

DECLARE gParentID INT DEFAULT 0;

DECLARE gPriority VARCHAR(255) DEFAULT '';

SET gPriority = inID;

SELECT parent_id INTO gParentID FROM category WHERE ID = inID;

WHILE gParentID > 0 DO /*0为根*/

SET gPriority = CONCAT(gParentID, '.', gPriority);

SELECT parent_id INTO gParentID FROM category WHERE ID = gParentID;

END WHILE;

RETURN gPriority;

end~

delimiter ;

2. 调用函数得到的便是排完序的结果

SELECT * FROM category ORDER BY getPriority(ID);

☆ getPriority 这个函数的限制条件是:所有数据追溯上去必须有唯一的祖先。从树结构来看,不能有多棵树。

来源:http://stackoverflow.com/questions/14890204/order-sql-tree-hierarchy

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值