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

Method _create_intersect

lib/sqlalchemy/sql/selectable.py:4597–4600  ·  view source on GitHub ↗
(
        cls, *selects: _SelectStatementForCompoundArgument[_TP]
    )

Source from the content-addressed store, hash-verified

4595
4596 @classmethod
4597 def _create_intersect(
4598 cls, *selects: _SelectStatementForCompoundArgument[_TP]
4599 ) -> CompoundSelect[_TP]:
4600 return CompoundSelect(_CompoundSelectKeyword.INTERSECT, *selects)
4601
4602 @classmethod
4603 def _create_intersect_all(

Callers 2

intersectMethod · 0.80
intersectFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected