ufoss-org / kotysa

The idiomatic way to write type-safe SQL in Kotlin
The Unlicense
121 stars 2 forks source link

Add FROM in Kotysa query DSL #34

Closed pull-vert closed 4 years ago

pull-vert commented 4 years ago

This will allow to do some requests that cannot be made with current implementation

SELECT role.name
FROM role
INNER JOIN user_role ON role.id = user_role.role_id
WHERE user_role.user_id = :userId