MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / any_

Class any_

lib/sqlalchemy/sql/functions.py:2063–2076  ·  view source on GitHub ↗

The SQL ANY() collection aggregate function. .. versionadded:: 2.1 .. seealso:: :func:`_expression.any_` - standalone ANY expression

Source from the content-addressed store, hash-verified

2061
2062
2063class any_(CollectionAggregateFunction[_T]):
2064 """The SQL ANY() collection aggregate function.
2065
2066 .. versionadded:: 2.1
2067
2068 .. seealso::
2069
2070 :func:`_expression.any_` - standalone ANY expression
2071
2072 """
2073
2074 name = "any"
2075 identifier = "any"
2076 inherit_cache = True
2077
2078
2079class all_(CollectionAggregateFunction[_T]):

Callers 15

AnyAllTestClass · 0.90
test_array_any_execMethod · 0.90

Calls

no outgoing calls