Browse Source

Show how to create multi-values with ROW

Abdon Pijpelink 2 years ago
parent
commit
e13281acc0
1 changed files with 7 additions and 0 deletions
  1. 7 0
      docs/reference/esql/esql-source-commands.asciidoc

+ 7 - 0
docs/reference/esql/esql-source-commands.asciidoc

@@ -58,6 +58,13 @@ that you specify. This can be useful for testing.
 ROW a = 1, b = "two", c = null
 ----
 
+Use angle brackets to create multi-value columns:
+
+[source,esql]
+----
+ROW a = [2, 1]
+----
+
 `ROW` supports the use of <<esql-functions,functions>>:
 
 [source,esql]