Subquery in select
Hi, is it possible to use subquery in a select?
I'd like to generate something like this
Schema:
Attempt:
3 Replies
I see. Is there some estimation when this might become available? Also is there some workaround one may use to achieve this? (e.g. raw SQL or something like that)
as for the workaround, you can try something like this:
alternatively, you can just use left join instead of selecting the subquery
(not a full query, will probably need GROUP BY clause, so just a reference)