STACK SORT

In this section:

How to:

The STACK SORT command enables you to sort the contents of a stack in ascending or descending order based on the values in one or more columns.


Top of page

x
Syntax: How to Use the STACK SORT Command

The syntax for the STACK SORT command is

STACK SORT stackname BY [HIGHEST] column [BY [HIGHEST] column ...] [;]

where:

stackname

Specifies the stack to be sorted. The stack name cannot be subscripted with a row range in order to sort only part of the stack.

HIGHEST

If specified, sorts the stack in descending order. If not specified, the stack is sorted in ascending order.

column

Is a stack column name. At least one column name must be specified. The column must exist in the specified stack.

;

Terminates the command. Although the semicolon is optional, it is recommended that you include it to allow for flexible syntax and better processing. For more information about the benefits of including the semicolon, see Terminating Command Syntax.



Example: Using STACK SORT

The following sorts the stack Emp using the values in the stack column Emp_ID:

STACK SORT Emp BY Emp_ID;

The following sorts the stack Emp so that the employees with the highest Salary are placed first in the stack:

STACK SORT Emp BY HIGHEST Salary;

The next example sorts the stack by Department. Within Department, the rows are ordered by highest Salary:

STACK SORT Emp BY Department BY HIGHEST Salary;

Top of page

x
Sorting Data With the Using CASE_INSENSITIVE Parameter

How to:

You can sort data in a stack without considering case by implementing the using CASE_INSENSITIVE parameter.



x
Syntax: How to Sort Data in a Stack With the Using CASE_INSENSITIVE Parameter

To sort data in a stack and ignore case-sensitivity:

  1. Add the using CASE_INSENSITIVE tablename parameter after the BY fields:
    STACK SORT stackname BY [HIGHEST] column [BY [HIGHEST] column ...] 
    [using CASE_INSENSITIVE] [;]
  2. Import the MNTUWS function library.
  3. Add the following command to the top case of the Maintain procedure:
    perform prep_CASE_INSENSITIVE

    For example:

    MAINTAIN
    module import (mntuws)
    $$Declarations
    case top
    perform prep_CASE_INSENSITIVE;
    COMPUTE STK(1).NAME/A10="GEORGE";
    STK(2).NAME="Bernard";
    STK(3).NAME="Shaw";
    ...
    STACK SORT STK BY NAME using CASE_INSENSITIVE;
    ...

    Note: For a back-end procedure without a top case, the perform prep_CASE_INSENSITIVE command is not required.

    When using MNTCON MATCH_CASE ON, the case of the code must be the same as it appears above.


WebFOCUS