Return the set of :class:`_expression.FromClause` objects implied by the columns clause of this SELECT statement. .. versionadded:: 1.4.23 .. seealso:: :attr:`_sql.Select.froms` - "final" FROM list taking the full statement into account
(self)
| 6064 | |
| 6065 | @property |
| 6066 | def columns_clause_froms(self) -> List[FromClause]: |
| 6067 | """Return the set of :class:`_expression.FromClause` objects implied |
| 6068 | by the columns clause of this SELECT statement. |
| 6069 | |
| 6070 | .. versionadded:: 1.4.23 |
| 6071 | |
| 6072 | .. seealso:: |
| 6073 | |
| 6074 | :attr:`_sql.Select.froms` - "final" FROM list taking the full |
| 6075 | statement into account |
| 6076 | |
| 6077 | :meth:`_sql.Select.with_only_columns` - makes use of this |
| 6078 | collection to set up a new FROM list |
| 6079 | |
| 6080 | """ |
| 6081 | |
| 6082 | return SelectState.get_plugin_class(self).get_columns_clause_froms( |
| 6083 | self |
| 6084 | ) |
| 6085 | |
| 6086 | @property |
| 6087 | def inner_columns(self) -> _SelectIterable: |
nothing calls this directly
no test coverage detected