我的架构基本上是这样的:
CREATE TABLE `data` (
`id` int(10) unsigned NOT NULL,
`title` text,
`type` tinyint(4),
`parent` int(10)
)
type
字段只是一个枚举,其中1是父类型,2是子类型(实际上有很多类型,其中一些应该像父母一样,有些像孩子一样)。 parent
字段表示记录是另一条记录的子项。
我知道这可能不适合我想要构建的查询,但这是我必须使用的。
我想对数据进行排序和分组,以便父记录按title
排序,并且在每个父记录下分组的是按title
排序的子记录。像这样:
ID | title |type |parent
--------------------------------
4 | ParentA | 1 |
2 | ChildA | 2 | 4
5 | ChildB | 2 | 4
7 | ParentB | 1 |
9 | ChildC | 2 | 7
1 | ChildD | 2 | 7
** 修改 **
我们应该能够完全取消type
字段。如果parent
不为null,则应将其分组在其父级下方。
答案 0 :(得分:2)
SELECT * FROM `data` ORDER BY COALESCE(`parent`, `id`), `parent`, `id`
答案 1 :(得分:0)
这是一个经过测试可以在SQL Server上运行的解决方案。在MySQL上应该基本相同
select Id, Title, [Type], Id as OrderId from Hier h1 where [Type] = 1
union
select Id, Title, [Type], Parent as OrderId from Hier h2 where [Type] = 2
order by OrderId, [Type]
答案 2 :(得分:0)
你说你想要对标题进行排序,对吗?
SELECT id, title, parent
FROM
( SELECT id, title, parent,
CASE WHEN parent is null THEN title ELSE CONCAT((SELECT title FROM `data` d2 WHERE d2.id = d.parent), '.', d.title) END AS sortkey
FROM `data` d
) subtable
ORDER BY sortkey
编辑:已修改为从查询中删除type
。