Postgresql 特别订购 BY
我需要在表上使用 ORDER BY
但在顶部保留一些特殊行。 例如,具有 name='developer'
的行。
I need to use an ORDER BY
on a table but keep some special rows on top.
The rows that have name='developer'
for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以在不使用 CASE 的情况下执行 ORDER BY:
You could also do the ORDER BY without the usage of a CASE:
像这样的东西可能对你有用。
Something like this might work for you.