JOOQ's Date docs contain the usual date functions (to_date
, dateadd
, ect..). However, I couldn't find any docs explaining how to use SQL's INTERVAL type to perform date math.
Can this SQL be represented in JOOQ or is my only option to dip down into raw SQL?
to_date(my_date_col) - INTERVAL '1 MONTH'