Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 555 Bytes

array-reverse.md

File metadata and controls

22 lines (16 loc) · 555 Bytes

Reverse an array

Explore this snippet here.

Description

There is no built-in function for reversing an array, but it is possible to construct one using the generate_subscripts function:

with data as (select array[1, 2, 3, 4] as nums)

select
  array(
    select nums[i]
    from generate_subscripts(nums, 1) as indices(i)
    order by i desc
  ) as reversed
from data

References

PostgreSQL wiki https://wiki.postgresql.org/wiki/Array_reverse