diff options
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/orm/query.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index a52302771..e39287b77 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -307,6 +307,11 @@ class Query(object): return self._compile_context(labels=self._with_labels).statement statement = property(statement) + def subquery(self): + """return the full SELECT statement represented by this Query, embedded within an Alias.""" + + return self.statement.alias() + def with_labels(self): """Apply column labels to the return value of Query.statement. |