MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / except_all

Method except_all

lib/sqlalchemy/sql/selectable.py:6692–6706  ·  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[_TP]
    )

Source from the content-addressed store, hash-verified

6690 return CompoundSelect._create_except(self, *other)
6691
6692 def except_all(
6693 self, *other: _SelectStatementForCompoundArgument[_TP]
6694 ) -> CompoundSelect[_TP]:
6695 r"""Return a SQL ``EXCEPT ALL`` of this select() construct against
6696 the given selectables provided as positional arguments.
6697
6698 :param \*other: one or more elements with which to create a
6699 UNION.
6700
6701 .. versionchanged:: 1.4.28
6702
6703 multiple elements are now accepted.
6704
6705 """
6706 return CompoundSelect._create_except_all(self, *other)
6707
6708 def intersect(
6709 self, *other: _SelectStatementForCompoundArgument[_TP]

Callers

nothing calls this directly

Calls 1

_create_except_allMethod · 0.80

Tested by

no test coverage detected