jOOQ and its DSL is good, however IMO it's more readable using raw SQL (by using `context.fetchInto` and its variants) than to using DSL when deal with complex query.
hi, @lukaseder, Thank you for creating jOOQ.
I don't have much experience on views, and some called `Best Practice` forbid to use that because it's hard to maintain. What do you think about that.
For small queries with straight forward joins, a query builder is nice and readable.
But for larger, more complex queries, I found putting the query into its own file was best for readability.