标签: sql
有没有什么办法可以按数字来排序?例如,返回结果按x列与数字5的接近程度进行排序
答案 0 :(得分:6)
是的。您可以在order by中使用表达式:
order by
order by abs(x - 5)