The SQL ANY() collection aggregate function. .. versionadded:: 2.1 .. seealso:: :func:`_expression.any_` - standalone ANY expression
| 2061 | |
| 2062 | |
| 2063 | class 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 | |
| 2079 | class all_(CollectionAggregateFunction[_T]): |
no outgoing calls