This procedure adds an order by expression to the order bys collection.
Syntax
procedure add_order_by ( p_order_bys in out nocopy t_order_bys, p_column_name in t_column_name, p_lov in t_lov, p_direction in t_order_direction default c_order_asc, p_order_nulls in t_order_nulls default null );-- c_order_nulls_last if ascending, c_order_nulls_first when descending procedure add_order_by ( p_order_bys in out nocopy t_order_bys, p_position in pls_integer, p_direction in t_order_direction default c_order_asc, p_order_nulls in t_order_nulls default null );-- c_order_nulls_last if ascending, c_order_nulls_first when descending
Parameters
Table 14-3 ADD_ORDER_BY Procedure Parameters
Parameter | Description |
---|---|
|
Order by collection. |
|
References a column name or alias of the provided data source. |
|
Defines if the column should be sorted ascending or descending. Valid values are |
|
Defines if NULL data will sort to the bottom or top. Valid values are
NULL , c_order_nulls_first and c_order_nulls_last . Use NULL for automatic handling based on the sort direction.
c_order_asc -> c_order_nulls_last c_order_desc -> c_order_nulls_first |
Example
declare l_order_bys apex_exec.t_order_bys; l_context apex_exec.t_context; begin apex_exec.add_order_by( p_order_bys => l_order_bys, p_column_name => 'ENAME', p_direction => apex_exec.c_order_asc ); l_context := apex_exec.open_web_source_query( p_module_static_id => '{web source module static ID}', p_order_bys => l_order_bys, p_max_rows => 1000 ); while apex_exec.next_row( l_context ) loop -- process rows here ... end loop; apex_exec.close( l_context ); exception when others then apex_exec.close( l_context ); raise; end;
Parent topic: APEX_EXEC