Produce an EXCEPT of this Query against one or more queries. Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See that method for usage examples. .. seealso:: :meth:`_sql.Select.except_` - v2 equivalent method.
(self, *q: Query[Any])
| 2242 | return self._set_op(expression.intersect_all, *q) |
| 2243 | |
| 2244 | def except_(self, *q: Query[Any]) -> Self: |
| 2245 | """Produce an EXCEPT of this Query against one or more queries. |
| 2246 | |
| 2247 | Works the same way as :meth:`~sqlalchemy.orm.query.Query.union`. See |
| 2248 | that method for usage examples. |
| 2249 | |
| 2250 | .. seealso:: |
| 2251 | |
| 2252 | :meth:`_sql.Select.except_` - v2 equivalent method. |
| 2253 | |
| 2254 | """ |
| 2255 | return self._set_op(expression.except_, *q) |
| 2256 | |
| 2257 | def except_all(self, *q: Query[Any]) -> Self: |
| 2258 | """Produce an EXCEPT ALL of this Query against one or more queries. |
no test coverage detected