MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / lateral

Method lateral

lib/sqlalchemy/sql/selectable.py:325–336  ·  view source on GitHub ↗

Return a LATERAL alias of this :class:`_expression.Selectable`. The return value is the :class:`_expression.Lateral` construct also provided by the top-level :func:`_expression.lateral` function. .. seealso:: :ref:`tutorial_lateral_correlation` - overview of u

(self, name: Optional[str] = None)

Source from the content-addressed store, hash-verified

323 raise NotImplementedError()
324
325 def lateral(self, name: Optional[str] = None) -> LateralFromClause:
326 """Return a LATERAL alias of this :class:`_expression.Selectable`.
327
328 The return value is the :class:`_expression.Lateral` construct also
329 provided by the top-level :func:`_expression.lateral` function.
330
331 .. seealso::
332
333 :ref:`tutorial_lateral_correlation` - overview of usage.
334
335 """
336 return Lateral._construct(self, name=name)
337
338 @util.deprecated(
339 "1.4",

Callers

nothing calls this directly

Calls 1

_constructMethod · 0.45

Tested by

no test coverage detected