How do you convert this into JOOQ... I can't seem to find a "format()"
method.
SELECT REGION,CONCAT('$', FORMAT(SUM(`Item_Ext_Price_USD`), 2)) AS 'Total'
FROM ....
I found:
context.select(PT.REGION,
DSL.concat(DSL.val("$").DSL.sum(PT.ITEM_EXT_PRICE_USD).as("Total")))....
stuck on the formatting of the string.
Thanks.
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.