Get the max value and count using kotlin-exposed

61 views Asked by At

I want to simulate this query using kotlin exposed framework:

SELECT MIN(created) as oldest_created, COUNT(*) as count FROM my_table

How to achieve that?

0

There are 0 answers