MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / select

Method select

lib/sqlalchemy/sql/functions.py:768–780  ·  view source on GitHub ↗

Produce a :func:`_expression.select` construct against this :class:`.FunctionElement`. This is shorthand for:: s = select(function_element)

(self)

Source from the content-addressed store, hash-verified

766 )
767
768 def select(self) -> Select[_T]:
769 """Produce a :func:`_expression.select` construct
770 against this :class:`.FunctionElement`.
771
772 This is shorthand for::
773
774 s = select(function_element)
775
776 """
777 s: Select[_T] = Select(self)
778 if self._execution_options:
779 s = s.execution_options(**self._execution_options)
780 return s
781
782 def _bind_param(
783 self,

Callers

nothing calls this directly

Calls 2

SelectClass · 0.85
execution_optionsMethod · 0.45

Tested by

no test coverage detected