当前位置:   article > 正文

pgsql中in查询如何保障查询后返回的顺序_postgres in 排序

postgres in 排序

使用过 pgsql查询时,以下场景:

select * from test where id in (3,1,2);
  • 1

查询后返回的结果很难是按照id 为3,1,2的顺序返回的,那么有些场景是需要保证顺序不变返回的,如何实现呢?

select id,
       actors,
       name,
       avatar,
       period,
       score
from movie
where id = any (array [1, 5, 4, 2, 3]::bigint[])
order by array_positions(array [1, 5, 4, 2, 3]::bigint[], id::bigint)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

如果有类型问题可能会报错,可以强转:

order by  array_positions(array [1, 5, 4, 2, 3], cast(id as INTERGER))
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/597548
推荐阅读
相关标签
  

闽ICP备14008679号