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

Method any_

lib/sqlalchemy/sql/operators.py:1988–2001  ·  view source on GitHub ↗

Produce an :func:`_expression.any_` clause against the parent object. See the documentation for :func:`_sql.any_` for examples. .. note:: be sure to not confuse the newer :meth:`_sql.ColumnOperators.any_` method with the **legacy** version of this me

(self)

Source from the content-addressed store, hash-verified

1986 return self.operate(distinct_op)
1987
1988 def any_(self) -> ColumnOperators:
1989 """Produce an :func:`_expression.any_` clause against the
1990 parent object.
1991
1992 See the documentation for :func:`_sql.any_` for examples.
1993
1994 .. note:: be sure to not confuse the newer
1995 :meth:`_sql.ColumnOperators.any_` method with the **legacy**
1996 version of this method, the :meth:`_types.ARRAY.Comparator.any`
1997 method that's specific to :class:`_types.ARRAY`, which uses a
1998 different calling style.
1999
2000 """
2001 return self.operate(any_op)
2002
2003 def all_(self) -> ColumnOperators:
2004 """Produce an :func:`_expression.all_` clause against the

Callers 4

_index_queryMethod · 0.45
any_opFunction · 0.45
any_Function · 0.45

Calls 1

operateMethod · 0.95

Tested by

no test coverage detected