我正在尝试编写SQL Server 2008查询,以便我可以根据需要循环输出和输出标头。我已经多次以错误的方式完成了这些工作,并且ColdFusion在页面中做了很多工作,但需要在SQL Server中完成。
FeatureID ParentID Feature
--------------------------
1 0 Apple
2 0 Boy
3 2 Charles
4 1 Daddy
5 2 Envelope
6 1 Frankfurter
我希望我的查询结果集如下所示:
FeatureID ParentID Feature
--------------------------
1 0 Apple
4 1 Daddy
6 1 Frankfurter
2 0 Boy
3 2 Charles
5 2 Envelope
如果ParentID为0,则表示它是主要类别。如果ParentID大于0,则表示它是次要类别,即父级的子级。
所以父母需要订购A - Z,孩子需要订购A-Z。
你能帮我正确订购吗?
SELECT FeatureID, ParentID, Feature
FROM Features
ORDER BY
答案 0 :(得分:10)
从您的评论中,如果您知道只有两个级别,那么有一个简单的解决方案:
select *
from @Features feat
order by
case
when ParentID = 0
then Feature
else (
select Feature
from @Features parent
where parent.FeatureID = feat.ParentID
)
end
, case when ParentID = 0 then 1 end desc
, Feature
答案 1 :(得分:7)
对于mysql,您可以尝试:(条件是您的Child的ParentID是您的ParentID的FeatureID)
SELECT FeatureID, ParentID, Feature
FROM Features
ORDER BY case when ParentID=0 then FeatureID else ParentID end * 1000 + FeatureID ASC