55.24 PUSH Procedure Signature 4
This procedure appends collection values to apex_t_varchar2
table.
Syntax
APEX_STRING. PUSH (
p_table IN OUT NOCOPY apex_t_varchar2,
p_values IN apex_t_varchar2 );
Parameters
Parameter | Description |
---|---|
p_table |
Defines the table. |
p_values |
Specifies the values that should be added to p_table .
|
Example
The following example demonstrates how to append a single value and multiple values, then prints the table.
DECLARE
l_table apex_t_varchar2;
BEGIN
apex_string.push(l_table, 'a');
apex_string.push(l_table, apex_t_varchar2('1','2','3'));
sys.dbms_output.put_line(apex_string.join(l_table, ':'));
END;
-> a:1:2:3
Parent topic: APEX_STRING