Parameters (String);
Returns: String;
Function to construct a csv list string, given a variable set of parameters.
The first parameter is the input.
Function can take more than 1 parameter, but must have at least 1 parameter.
Examples:
CREATE_CSV_LIST('London','Paris','New York')= "London","Paris","New York"
CREATE_CSV_LIST(1,2,3,4)= "1","2","3","4"
Comments
0 comments
Please sign in to leave a comment.