题主的这个排序需求,用SQL来解决,其难度的确比较大,不过经过特殊的排序安排还是可以解决的。请参考下列语句:
这里假设表名为OrderTest(id,pid,name) id是主键具有唯一性
select t.id,t.pid,t.`name` from(select a.*,
(select id from OrderTest where id=a.pid and
id<>a.id limit 1) as p
from OrderTest a) t
order by
IFNULL(t.p,t.id),
case when t.p is null then 0 else 1 end,t.id
下面是实验截图
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)