Skip to content

Instantly share code, notes, and snippets.

@henninb
Last active August 31, 2021 04:33
Show Gist options
  • Save henninb/105c26dead2dbbfd92318ce00af02883 to your computer and use it in GitHub Desktop.
Save henninb/105c26dead2dbbfd92318ce00af02883 to your computer and use it in GitHub Desktop.
Jooq.groovy
Field TOTALS_DEBITS = dslContext.select(DSL.coalesce(DSL.sum(T_TRANSACTION.AMOUNT), 0.0).as("debits"))
.from(T_TRANSACTION)
.where(T_TRANSACTION.ACTIVE_STATUS.eq(true) & T_TRANSACTION.ACCOUNT_TYPE.eq("debit")).asField()
Field TOTALS_CREDITS = dslContext.select(DSL.coalesce(DSL.sum(T_TRANSACTION.AMOUNT), 0.0).as("credits"))
.from(T_TRANSACTION)
.where(T_TRANSACTION.ACTIVE_STATUS.eq(true) & T_TRANSACTION.ACCOUNT_TYPE.eq("credit")).asField()
return dslContext.select((TOTALS_DEBITS - TOTALS_CREDITS).as("totals"))
.fetchOneInto(Summary)
@henninb
Copy link
Author

henninb commented Aug 30, 2021

@lukaseder I got it working with the code above. Thank you so much for walking through my struggles with me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment