40.17 PUSH Procedure Signature 3
This procedure appends collection values to apex_t_varchar2 table.
Syntax
PUSH (
p_table IN OUT NOCOPY apex_t_varchar2,
p_values IN apex_t_varchar2 );Parameters
Table 40-19 PUSH Procedure Signature 3 Parameters
| Parameter | Description |
|---|---|
|
|
Defines the table. |
|
|
Specifies the values that should be added to |
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:3Parent topic: APEX_STRING