internal_expandProperties
This procedure converts a comma-separated list of key-value pairs divided by an equals sign ('=
') into a key-value table.
Parameters
Parameter | Description |
---|---|
properties | Comma-separated string of properties; mandatory |
Attributes
Attribute | Type | Description |
---|---|---|
| string | Parameter key |
| string | Parameter value |
Example
SQL
CALL UTILS.internal_expandProperties(
properties => 'item1=10,item2=20'
);;
This call returns the following: