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