-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Description
Hey,
I do have an SQL Statement that looks something like this:
SELECT * FROM table
WHERE age IN (SELECT max(age) FROM table
GROUP BY id)
ORDER BY id
My statement, build with your Framework looks something like this
table.filter(contains[table.max(age)!
.group by id], age)
.order by id
so i want to use the group by function to the knew query with the max age values.
The Problem I have is, that .max returns a simple value and no query.
Is there any way I can solve this Problem?