作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试以这样一种方式编写我的 SQL Server 2008 查询,以便我可以根据需要循环遍历我的输出和输出 header 。我已经多次以错误的方式完成这些工作,并且让 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
SELECT FeatureID, ParentID, Feature
FROM Features
ORDER BY
最佳答案
根据您的评论,如果您知道只有两个级别,则有一个简单的解决方案:
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
关于sql - 我如何先由 parent 订购然后由 child 订购?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8022158/
我是一名优秀的程序员,十分优秀!