Construct an empty list. The only argument specifies a string describing the data type of the list cell, or the type itself obtained using relevant functions. YQL doesn't support lists with an unknown cell type.
Documentation for the type definition format.
SELECT ListCreate(Tuple<String,Double?>);
SELECT ListCreate(OptionalType(DataType("String")));
Construct a list based on one or more arguments. The argument types must be compatible in the case of AsList
and strictly match in the case of AsListStrict
.
SELECT AsList(1, 2, 3, 4, 5);
The count of items in the list.
SELECT ListLength(list_column) FROM my_table;
Check that the list contains at least one item.
SELECT ListHasItems(list_column) FROM my_table;
Convert a lazy list (it can be built by such functions as ListFilter, ListMap, ListFlatMap) to an eager list. In contrast to a lazy list, where each new pass re-calculates the list contents, in an eager list the content is built at once by consuming more memory.
SELECT ListCollect(list_column) FROM my_table;
Sort the list. By default, the ascending sorting order is applied (ListSort
is an alias for ListSortAsc
).
Arguments:
SELECT ListSortDesc(list_column) FROM my_table;
$list = AsList(
AsTuple("x", 3),
AsTuple("xx", 1),
AsTuple("a", 2)
);
SELECT ListSort($list, ($x) -> {
RETURN $x.1;
});
{% note info %}
The example used a lambda function.
{% endnote %}
Sequentially join lists (concatenation of lists). The arguments can be lists, optional lists, and NULL
.
The types of list items must be compatible in the case of ListExtend
and strictly match in the case of ListExtendStrict
.
If at least one of the lists is optional, then the result is also optional.
If at least one argument is NULL
, then the result type is NULL
.
SELECT ListExtend(
list_column_1,
list_column_2,
list_column_3
) FROM my_table;
Sequentially join lists of structures (concatenation of lists). A field is added to the output list of structures if it exists in at least one source list, but if there is no such field in any list, it is added as NULL. In the case when a field is present in two or more lists, the output field is cast to the common type.
If at least one of the lists is optional, then the result is also optional.
SELECT ListUnionAll(
list_column_1,
list_column_2,
list_column_3
) FROM my_table;
Based on the input lists, build a list of pairs containing the list items with matching indexes (List<Tuplefirst_list_element_type,second_list_element_type>
).
The length of the returned list is determined by the shortest list for ListZip and the longest list for ListZipAll.
When the shorter list is exhausted, a NULL
value of a relevant optional type is paired with the elements of the longer list.
SELECT
ListZip(list_column_1, list_column_2, list_column_3),
ListZipAll(list_column_1, list_column_2)
FROM my_table;
Build a list of pairs (Tuple) containing the element number and the element itself (List<TupleUint64,list_element_type>
).
SELECT ListEnumerate(list_column) FROM my_table;
Reverse the list.
SELECT ListReverse(list_column) FROM my_table;
Returns a copy of the list, skipping the specified number of its first elements.
The first argument specifies the source list and the second argument specifies how many elements to skip.
SELECT
ListSkip(list_column, 3)
FROM my_table;
Returns a copy of the list containing a limited number of elements from the second list.
The first argument specifies the source list and the second argument specifies the maximum number of elements to be taken from the beginning of the list.
SELECT ListTake(list_column, 3) FROM my_table;
Returns a sample without replacement from the list.
ListSample
chooses elements independently with the specified probability.
ListSampleN
chooses a sample of the specified size (if the length of the list is less than the sample size, returns the original list).
If the probability/sample size is NULL, returns the original list.
An optional argument is used to control randomness, see documentation for Random
.
ListSample(List<T>, Double?[, U])->List<T>
ListSample(List<T>?, Double?[, U])->List<T>?
ListSampleN(List<T>, Uint64?[, U])->List<T>
ListSampleN(List<T>?, Uint64?[, U])->List<T>?
$list = AsList(1, 2, 3, 4, 5);
SELECT ListSample($list, 0.5); -- [1, 2, 5]
SELECT ListSampleN($list, 2); -- [4, 2]
Returns a shuffled copy of the list. An optional argument is used to control randomness, see documentation for Random
.
ListShuffle(List<T>[, U])->List<T>
ListShuffle(List<T>?[, U])->List<T>?
$list = AsList(1, 2, 3, 4, 5);
SELECT ListShuffle($list); -- [1, 3, 5, 2, 4]
Searches the list for an element with the specified value and returns its index at the first occurrence. Indexes count from 0. If such element is missing, it returns NULL
.
SELECT
ListIndexOf(list_column, 123)
FROM my_table;
Apply the function specified as the second argument to each list element. The functions differ in their returned result:
ListMap
returns a list with results.ListFlatMap
returns a list with results, combining and expanding the first level of results (lists or optional values) for each item.ListFilter
leaves only those elements where the function returned true
.{% note info %}
In ListFlatMap
, using optional values in function results is deprecated, use the combination of ListNotNull
and ListMap
instead.
{% endnote %}
Arguments:
Functions for processing list elements, such as:
Module::Function
- C++ UDF.If the source list is optional, then the output list is also optional.
$callable = Python::test(Callable<(Int64)->Bool>, "defMyFavouriteCrutchtest(i): return i % 2");
SELECT
ListMap(list_column, ($x) -> { RETURN $x > 2; }),
ListFlatMap(list_column, My::Udf),
ListFilter(list_column, $callable)
FROM my_table;
Applies transformation to the source list, skipping empty optional items and strengthening the item type to non-optional. For a list with non-optional items, it returns the unchanged source list.
If the source list is optional, then the output list is also optional.
SELECT ListNotNull([1,2]), -- [1,2]
ListNotNull([3,null,4]); -- [3,4]
Expands the list of lists into a flat list, preserving the order of items. As the top-level list item you can use an optional list that is interpreted as an empty list in the case of NULL
.
If the source list is optional, then the output list is also optional.
SELECT ListFlatten([[1,2],[3,4]]), -- [1,2,3,4]
ListFlatten([null,[3,4],[5,6]]); -- [3,4,5,6]
Returns a copy of the list containing only distinct elements.
SELECT
ListUniq(list_column)
FROM my_table;
Returns true
for a list of Boolean values, if:
ListAny
: At least one element is true
.ListAll
: All elements are true
.Otherwise, it returns false.
SELECT
ListAll(bool_column),
ListAny(bool_column)
FROM my_table;
Show whether the list contains the specified element. In this case, NULL
values are considered equal to each other, and with a NULL
input list, the result is always false
.
SELECT
ListHas(list_column, "my_needle")
FROM my_table;
Returns the first and last item of the list.
SELECT
ListHead(numeric_list_column) AS head,
ListLast(numeric_list_column) AS last
FROM my_table;
Apply the appropriate aggregate function to all elements of the numeric list.
SELECT
ListMax(numeric_list_column) AS max,
ListMin(numeric_list_column) AS min,
ListSum(numeric_list_column) AS sum,
ListAvg(numeric_list_column) AS avg
FROM my_table;
Folding a list.
Arguments:
U
for ListFold
, initLambda(item:T)->U
for ListFold1
updateLambda(item:T, state:U)->U
Type returned:
U
for ListFold
, U?
for ListFold1
.
$l = [1, 4, 7, 2];
$y = ($x, $y) -> { RETURN $x + $y; };
$z = ($x) -> { RETURN 4 * $x; };
SELECT
ListFold($l, 6, $y) AS fold, -- 20
ListFold([], 3, $y) AS fold_empty, -- 3
ListFold1($l, $z, $y) AS fold1, -- 17
ListFold1([], $z, $y) AS fold1_empty; -- Null
Converts each list item i by calling the handler(i, state).
Arguments:
S
for ListFoldMap
, initLambda(item:T)->tuple (U S)
for ListFold1Map
handler(item:T, state:S)->tuple (U S)
Type returned: List
of U
items.
$l = [1, 4, 7, 2];
$x = ($i, $s) -> { RETURN ($i * $s, $i + $s); };
$t = ($i) -> { RETURN ($i + 1, $i + 2); };
SELECT
ListFoldMap([], 1, $x), -- []
ListFoldMap($l, 1, $x), -- [1, 8, 42, 26]
ListFold1Map([], $t, $x), -- []
ListFold1Map($l, $t, $x); -- [2, 12, 49, 28]
Generate a sequence of numbers with the specified step. It's similar to xrange
in Python 2, but additionally supports floats.
Arguments:
Specifics:
ListFromRange(1,3) == AsList(1,2)
.ListFromRange(1, 2, 0.5)
results in a Double
list.Interval
.NULL
, the result is NULL
.SELECT
ListFromRange(-2, 2), -- [-2, -1, 0, 1]
ListFromRange(2, 1, -0.5); -- [2.0, 1.5]
ListFromRange(T{Flags:AutoMap}, T{Flags:AutoMap}, T?)->LazyList<T> -- T — numeric type
ListFromRange(T{Flags:AutoMap}, T{Flags:AutoMap}, I?)->LazyList<T> -- T — type, representing date/time, I — interval
Creates a list containing multiple copies of the specified value.
Required arguments:
SELECT ListReplicate(true, 3); -- [true, true, true]
Concatenates a list of strings into a single string. You can set a separator as the second parameter.
SELECT
ListConcat(string_list_column),
ListConcat(string_list_column, "; ")
FROM my_table;
For a list of structures, it returns a list of contained fields having the specified name.
SELECT
ListExtract(struct_list_column, "MyMember")
FROM my_table;
ListTakeWhile
returns a list from the beginning while the predicate is true, then the list ends.
ListSkipWhile
skips the list segment from the beginning while the predicate is true, then returns the rest of the list ignoring the predicate.
ListTakeWhileInclusive
returns a list from the beginning while the predicate is true. Then the list ends, but it also includes the item on which the stopping predicate triggered.
ListSkipWhileInclusive
skips a list segment from the beginning while the predicate is true, then returns the rest of the list disregarding the predicate, but excluding the element that matched the predicate and starting with the next element after it.
Required arguments:
If the input list is optional, then the result is also optional.
$data = AsList(1, 2, 5, 1, 2, 7);
SELECT
ListTakeWhile($data, ($x) -> {return $x <= 3}), -- [1, 2]
ListSkipWhile($data, ($x) -> {return $x <= 3}), -- [5, 1, 2, 7]
ListTakeWhileInclusive($data, ($x) -> {return $x <= 3}), -- [1, 2, 5]
ListSkipWhileInclusive($data, ($x) -> {return $x <= 3}); -- [1, 2, 7]
Apply the aggregation factory to the passed list.
If the passed list is empty, the aggregation result is the same as for an empty table: 0 for the COUNT
function and NULL
for other functions.
If the passed list is optional and NULL
, the result is also NULL
.
Arguments:
SELECT ListAggregate(AsList(1, 2, 3), AggregationFactory("Sum")); -- 6
Convert a list of tuples containing key-value pairs to a dictionary. In case of conflicting keys in the input list, ToDict
leaves the first value and ToMultiDict
builds a list of all the values.
It means that:
ToDict
converts List<TupleK, V="">
to Dict<K, V="">
ToMultiDict
converts List<TupleK, V>
to Dict<K, List<V>>
Optional lists are also supported, resulting in an optional dictionary.
SELECT
ToDict(tuple_list_column)
FROM my_table;
Converts a list to a dictionary where the keys are unique elements of this list, and values are omitted and have the type Void
. For the List<T>
list, the result type is Dict<T, Void="">
.
An optional list is also supported, resulting in an optional dictionary.
Inverse function: get a list of keys for the DictKeys dictionary.
SELECT
ToSet(list_column)
FROM my_table;
Select top values from the list. ListTopSort*
additionally sorts the returned values. The smallest values are selected by default. Thus, the functions without a suffix are the aliases to *Asc
functions, while *Desc
functions return the largest values.
ListTopSort
is more effective than consecutive ListTop
and ListSort
because ListTop
can partially sort the list to find needed values. However, ListTop
is more effective than ListTopSort
when the result order is unimportant.
Arguments:
ListTop(List<T>{Flags:AutoMap}, N)->List<T>
ListTop(List<T>{Flags:AutoMap}, N, (T)->U)->List<T>
The signatures of other functions are the same.