Hi All, how can I write these query in exposed ```...
# exposed
t
Hi All, how can I write these query in exposed
Copy code
select *
from users
where age = (select max(age) from users)
t
You want to do nested queries, try the option suggested by @tapac in this thread https://github.com/JetBrains/Exposed/issues/248
t
Not the same, in the example, he is using the joins, however I need it without join
t
@Timur Atakishiev, your case is much more like a https://github.com/JetBrains/Exposed/issues/252#issuecomment-366973207