XMLWordPrintableJSON

Details

    Description

      Returns the array in expr in sorted order.

      Syntax:

      sort_array(expr [, ascendingOrder] ) 

      Arguments:

      • expr: An ARRAY expression of sortable elements.
      • ascendingOrder: An optional BOOLEAN expression defaulting to true.

      Returns:

      The result type matches expr.

      Sorts the input array in ascending or descending order according to the natural ordering of the array elements. NULL elements are placed at the beginning of the returned array in ascending order or at the end of the returned array in descending order.

      Examples:

      > SELECT sort_array(array('b', 'd', NULL, 'c', 'a'), true);
       [NULL,a,b,c,d] 

      See more:

      Attachments

        Issue Links

          Activity

            People

              hanyuzheng Hanyu Zheng
              lsy dalongliu
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: