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]
)
| 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] |
nothing calls this directly
no test coverage detected