Subject: | Can't select on a subquery |
It would be very useful if it were possible to pass a Fey::SQL::Select
object to another Fey::SQL::Select’s `select` method (and to provide an
alias for it somehow) in order to facilitate constructions like
SELECT
foo,
bar,
(SELECT someprop FROM baz WHERE quux.baz = baz.id)
FROM quux;
This can be solved via a left outer join instead, so there's no pressing
need for this feature, but it would still be nice to have the option.