how to write following SQL using jOOQ?

SELECT *
FROM food_db_schema.tblCategory AS t1
LEFT OUTER JOIN food_db_schema.tblCategory AS t2 ON t1.category_id = t2.parent_id
WHERE t2.parent_id IS NULL
AND t1.heartbeat = "ALIVE";

database is mySQL

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Maybe

SELECT *
FROM food_db_schema.tblCategory AS t1
WHERE t1.category_id IS NULL
AND t1.heartbeat = "ALIVE";

, but are you sure t2.parent_id is both supposed to be NULL and equal to t1.category_id?

EDIT:

Then something like

Table<TblCategoryRecord> t1 = TBLCATEGORY.as("t1");
Table<TblCategoryRecord> t2 = TBLCATEGORY.as("t2");

Field<Integer> t1CategoryId = t1.getField(TblCategory.CATEGORY_ID);
Field<String> t1Heartbeat = t1.getField(TblCategory.HEARTBEAT);
Field<Integer> t2ParentId = t2.getField(TblCategory.PARENT_ID);

Record record = create.select().from(t1)
      .leftOuterJoin(t2).on(t1CategoryId.equal(t2ParentId))
      .where(t2ParentId.isNull())
      .and(t1Heartbeat.equal("ALIVE"));

depending on what the generated classes, properties and meta-model objects are called.

link|improve this answer
The select works as I need. It selects parents without children in a tree structure. I am asking for help to map it in jOOQ. Of course I can implement it in a raw JDBC. – Charis997 Nov 20 '11 at 9:47
1  
The create.selectFrom(...) syntax doesn't allow for joins. You could re-write that to .select().from(t1), though – Lukas Eder Nov 20 '11 at 13:43
@Lukas: Thanks. I'm not on my development computer, so I hadn't tested it. – flesk Nov 20 '11 at 13:46
@flesk: It works fine. Thx – Charis997 Nov 20 '11 at 20:12
@Charis: My pleasure. Consider marking it as answer. – flesk Nov 20 '11 at 20:17
feedback

flesk's answer depicts nicely how this can be done with jOOQ 1.x. A self-join using aliasing is more or less equivalent to a regular join using aliasing as described in the manual:

http://www.jooq.org/manual/DSL/ALIAS/

In the upcoming version 2.0, aliasing will be made less verbose and more type-safe. Hence flesk's solution could be simplified as such:

// Type-safe table aliasing:
TblCategory t1 = TBLCATEGORY.as("t1");
TblCategory t2 = TBLCATEGORY.as("t2");

Record record = create.select()
                      .from(t1)
                       // t1 and t2 give access to aliased fields:
                      .leftOuterJoin(t2).on(t1.CATEGORY_ID.equal(t2.PARENT_ID))
                      .where(t2.PARENT_ID.isNull())
                      .and(t1.HEARTBEAT.equal("ALIVE"));

I have also described a more complex example for a self-join here:

http://lukaseder.wordpress.com/2011/11/14/jooq-meta-a-hard-core-sql-proof-of-concept/

link|improve this answer
That looks sweet. I'm used to Hibernate criteria, but JOOQ feels a lot more intuitive when you've been writing SQL statements your entire adult life. – flesk Nov 21 '11 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.