12 回答
HUH函数
TA贡献1836条经验 获得超4个赞
select * from (select t.*, t.ID || t.PAERNT_ID sort from table t) order by sort
冉冉说
TA贡献1877条经验 获得超1个赞
(select * from xxx where id = 1) union (select * from xxx where id = 2) union (select * from xxx where id = 4) union (select * from xxx where id = 3)
或加个sort字段
天涯尽头无女友
TA贡献1831条经验 获得超9个赞
@一个点的未来: select id,contat(parent_id,id) seq from table order by seq
注意下 parent_id 为空的时候,联合效果是:null 1 ---- 1 而不是 null1,如果搞不定,可以将null替换为""
添加回答
举报
0/150
提交
取消