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