• About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us
AimactGrow
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing
No Result
View All Result
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing
No Result
View All Result
AimactGrow
No Result
View All Result

The way to Write a Derived Desk in jOOQ – Java, SQL and jOOQ.

Admin by Admin
May 2, 2025
Home Coding
Share on FacebookShare on Twitter


One of many extra frequent questions on jOOQ is easy methods to write a derived desk (or a CTE). The jOOQ handbook reveals a easy instance of a derived desk:

In SQL:

SELECT nested.*
FROM (
  SELECT AUTHOR_ID, depend(*) books
  FROM BOOK
  GROUP BY AUTHOR_ID
) nested
ORDER BY nested.books DESC

In jOOQ:

// Declare the derived desk up entrance:
Desk> nested =
    choose(BOOK.AUTHOR_ID, depend().as("books"))
    .from(BOOK)
    .groupBy(BOOK.AUTHOR_ID).asTable("nested");

// Then use it in SQL:
ctx.choose(nested.fields())
   .from(nested)
   .orderBy(nested.discipline("books"))
   .fetch();

And that’s just about it. The query often arises from the truth that there’s a stunning lack of sort security when working with derived tables (or CTE, which aren’t that a lot totally different). Two issues should be understood:

  1. Not like SQL, the Java language can reference an object that hasn’t been declared but, lexically, so now we have to declare the derived desk earlier than utilizing it.
  2. Not like generated code from the catalog, a derived desk is simply an expression, and there isn’t actually a great way so as to add attributes to this expression, primarily based on the expression’s construction, not less than not in Java. That signifies that columns of a derived desk aren’t dereferenceable in a sort protected means. You’ll be able to, nonetheless, reuse expressions, as proven under:
// Declare a discipline expression up entrance:
Subject depend = depend().as("books");

// Then use it within the derived desk:
Desk> nested =
    choose(BOOK.AUTHOR_ID, depend)
    .from(BOOK)
    .groupBy(BOOK.AUTHOR_ID).asTable("nested");

// And use it as nicely within the outer question, when dereferencing a column:
ctx.choose(nested.fields())
   .from(nested)
   .orderBy(nested.discipline(depend))
   .fetch();

Did you really want the derived desk?

Lots of instances once I reply such questions on Stack Overflow or elsewhere, it turns into obvious that the derived desk wasn’t wanted within the first place. The truth is, this very instance from the jOOQ handbook didn’t want any derived desk! The SQL question could be simplified to this:

SELECT AUTHOR_ID, depend(*) books
FROM BOOK
GROUP BY AUTHOR_ID
ORDER BY books DESC

Nothing is misplaced by this simplification. Seeing when a simplification can happen may require some apply. It’s all the time good to be conscious of the logical order of operations in SQL, to ensure the ensuing question is equal. However when it’s, then it’s a lot simpler to translate to jOOQ, as a result of now, we will use generated code once more, all over the place, and don’t should depend on the much less sort protected dereferencing of columns from derived tables. Right here’s the jOOQ equal:

// We will nonetheless assign expressions to native variables
Subject depend = depend().as("books");

// After which use them within the question:
ctx.choose(BOOK.AUTHOR_ID, depend)
   .from(BOOK)
   .groupBy(BOOK.AUTHOR_ID)
   .orderBy(depend)
   .fetch();

Conclusion

So, whenever you work with jOOQ and your question is sufficiently easy, then your query of

The way to write a derived desk in jOOQ?

Could be modified to:

Did I want a derived desk within the first place?

That means, you possibly can enhance each your jOOQ question and your SQL question

Like this:

Like Loading…

Tags: DerivedJavajOOQSQLtablewrite
Admin

Admin

Next Post
Fortnite Is Down: When Will Fortnite Servers Be Again Up For Star Wars Season?

Fortnite Is Down: When Will Fortnite Servers Be Again Up For Star Wars Season?

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recommended.

New Sorillus RAT Targets European Organizations By means of Tunneling Providers

New Sorillus RAT Targets European Organizations By means of Tunneling Providers

June 18, 2025
Google Search Rating Volatility, Wild AI Mode, Google Adverts Business Queries & Channel Reporting & ChatGPT Purchasing Search

Google Search Rating Volatility, Wild AI Mode, Google Adverts Business Queries & Channel Reporting & ChatGPT Purchasing Search

May 4, 2025

Trending.

Industrial-strength April Patch Tuesday covers 135 CVEs – Sophos Information

Industrial-strength April Patch Tuesday covers 135 CVEs – Sophos Information

April 10, 2025
Expedition 33 Guides, Codex, and Construct Planner

Expedition 33 Guides, Codex, and Construct Planner

April 26, 2025
How you can open the Antechamber and all lever places in Blue Prince

How you can open the Antechamber and all lever places in Blue Prince

April 14, 2025
Important SAP Exploit, AI-Powered Phishing, Main Breaches, New CVEs & Extra

Important SAP Exploit, AI-Powered Phishing, Main Breaches, New CVEs & Extra

April 28, 2025
Wormable AirPlay Flaws Allow Zero-Click on RCE on Apple Units by way of Public Wi-Fi

Wormable AirPlay Flaws Allow Zero-Click on RCE on Apple Units by way of Public Wi-Fi

May 5, 2025

AimactGrow

Welcome to AimactGrow, your ultimate source for all things technology! Our mission is to provide insightful, up-to-date content on the latest advancements in technology, coding, gaming, digital marketing, SEO, cybersecurity, and artificial intelligence (AI).

Categories

  • AI
  • Coding
  • Cybersecurity
  • Digital marketing
  • Gaming
  • SEO
  • Technology

Recent News

Borderlands 4 is a daring departure for the collection, however 2K could have carved off a few of its soul within the pursuit of killing cringe – preview

Borderlands 4 is a daring departure for the collection, however 2K could have carved off a few of its soul within the pursuit of killing cringe – preview

June 18, 2025
Coding a 3D Audio Visualizer with Three.js, GSAP & Internet Audio API

Coding a 3D Audio Visualizer with Three.js, GSAP & Internet Audio API

June 18, 2025
  • About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us

© 2025 https://blog.aimactgrow.com/ - All Rights Reserved

No Result
View All Result
  • Home
  • Technology
  • AI
  • SEO
  • Coding
  • Gaming
  • Cybersecurity
  • Digital marketing

© 2025 https://blog.aimactgrow.com/ - All Rights Reserved