Sönke Peters
04/19/2022, 12:04 PMSELECT ... FROM (SELECT ... FROM xxx)
? I need to run a query and do some more stuff (aggregation, sorting) with its results. I would like to do that in the database rather than manually in my app (e.g. with result.sort(...)
or result..reduce(...)
). Is there a way?mjyoung
04/19/2022, 12:38 PMNurul
04/19/2022, 12:55 PMSönke Peters
04/19/2022, 5:15 PM@map
(see docs), right? I need all my queries to work even if the table names change.Nurul
04/20/2022, 6:33 AMSönke Peters
04/20/2022, 6:52 AMNurul
04/20/2022, 6:57 AM