I've been converting an SQL app to use JOOQ. So far, it has worked great, but I have 2 final queries that do a random order on the records.
What is the JOOQ way of doing it without resorting to raw SQL? In raw SQL, I do "order by new_id()", by was hoping for .order(RAND), but that doesn't work.