MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / except_all

Method except_all

lib/sqlalchemy/sql/selectable.py:6981–6995  ·  view source on GitHub ↗

r"""Return a SQL ``EXCEPT ALL`` of this select() construct against the given selectables provided as positional arguments. :param \*other: one or more elements with which to create a UNION. .. versionchanged:: 1.4.28 multiple elements are now accepted

(
        self, *other: _SelectStatementForCompoundArgument[Unpack[_Ts]]
    )

Source from the content-addressed store, hash-verified

6979 return CompoundSelect._create_except(self, *other)
6980
6981 def except_all(
6982 self, *other: _SelectStatementForCompoundArgument[Unpack[_Ts]]
6983 ) -> CompoundSelect[Unpack[_Ts]]:
6984 r"""Return a SQL ``EXCEPT ALL`` of this select() construct against
6985 the given selectables provided as positional arguments.
6986
6987 :param \*other: one or more elements with which to create a
6988 UNION.
6989
6990 .. versionchanged:: 1.4.28
6991
6992 multiple elements are now accepted.
6993
6994 """
6995 return CompoundSelect._create_except_all(self, *other)
6996
6997 def intersect(
6998 self, *other: _SelectStatementForCompoundArgument[Unpack[_Ts]]

Callers

nothing calls this directly

Calls 1

_create_except_allMethod · 0.80

Tested by

no test coverage detected