39.16 PUSH Procedure Signature 2
This procedure appends a value to apex_t_number table.
                  
Syntax
PUSH (
   p_table IN OUT NOCOPY apex_t_number,
   p_value IN NUMBER );Parameters
Table 39-18 PUSH Procedure Signature 2 Parameters
| Parameter | Description | 
|---|---|
| 
                                  
  | 
                              
                                  Defines the table.  | 
                           
| 
                                  
  | 
                              
                                  Specifies the value to be added.  | 
                           
Example
The following example demonstrates how to append 2 values, then prints the table.
declare
   l_table apex_t_number;   
begin
   apex_string.push(l_table, 1);
   apex_string.push(l_table, 2);
   sys.dbms_output.put_line(apex_string.join(l_table, ':'));
end;
-> 1:2Parent topic: APEX_STRING