📅  最后修改于: 2022-03-11 15:05:21.837000             🧑  作者: Mango
# If no-parent = 0 instead of null
SELECT CONCAT(IF(parent = 0,'',CONCAT('/',parent)),'/',id) AS gen_order
FROM table
ORDER BY gen_order
#and if no-parent = null
ORDER BY COALESCE(parent, id), parent IS NOT NULL, id