2015-09-20 13:51:10 +02:00

11 lines
527 B
Plaintext

{
"function": "concat",
"description": "Concatenates several strings to one. NULL values are converted to empty strings.",
"variableLenArguments": true,
"arguments": [ {"arg":"string1", "syntaxOnly": true},
{"arg":"string2", "syntaxOnly": true},
{"arg":"string", "descOnly": true, "description":"a string value"}],
"examples": [ { "expression":"concat('a','b','c','d','e')", "returns":"'abcde'"},
{ "expression":"concat('The Wall', NULL)", "returns":"'The Wall'"}]
}