复杂排序sql
我有下表,
Priority Time
100 1
86 3
85 2
我想先按优先级排序,然后按时间排序,但是,20 点以内的优先级差异将被视为相同。例如,100 和85 被视为相同的优先级。 所以结果将是:
Priority Time
100 1
85 2
86 3
谢谢,
I have the following table
Priority Time
100 1
86 3
85 2
I want to sort it by first by priority and then by time, however, priority differce within 20 points are treated the same. e.g. 100 and 85 are considered as the same priority level.
so the result will be:
Priority Time
100 1
85 2
86 3
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个(假设优先级是一个整数)
Try this (assuming that priority is an integer)