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?
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?