Construct a sequence of expressions.
An ExprSequence
constructs a sequence of expressions that
consists of at least one expression. Further expressions are separated by
commas.
A sequence of expressions that consists of string and numeric literals:
(1, 2, ("a", "b", "c"), 3, 4)
Since sequences cannot be nested, this sequence is evaluated to the
sequence (1, 2, a, b, c, 3, 4)
.
The following construct(s) refer to this construct:
This construct is also related to the following construct(s):
XQueryModule
|