Postgresql – Select multiple values and ORDER BY using Kotlin Exposed SQL DSL
Im trying to make the next query making use of Kotlin SQL Exposed framework. SELECT interation_id, group_id, max(version) FROM interaction GROUP BY group_id; I have a table of interactions, and each interaction group can have multiple interactions, each one marked…