diff --git a/jOOQ-website/index.php b/jOOQ-website/index.php index 146f78e03d..aa64fb8bc1 100644 --- a/jOOQ-website/index.php +++ b/jOOQ-website/index.php @@ -1,10 +1,10 @@ -
-create.select(FIRST_NAME, LAST_NAME, create.count())
+create.select(FIRST_NAME, LAST_NAME, count())
       .from(AUTHOR)
       .join(BOOK).on(Author.ID.equal(Book.AUTHOR_ID))
       .where(LANGUAGE.equal("DE"))
-      .and(PUBLISHED.greaterThan(parseDate('2008-01-01')))
+      .and(PUBLISHED.greaterThan(parseDate("2008-01-01")))
       .groupBy(FIRST_NAME, LAST_NAME)
-      .having(create.count().greaterThan(5))
+      .having(count().greaterThan(5))
       .orderBy(LAST_NAME.asc().nullsFirst())
       .limit(2)
       .offset(1)
@@ -67,10 +67,10 @@ create.select(FIRST_NAME, LAST_NAME, create.count())
       .of(FIRST_NAME, LAST_NAME)
- +

What is jOOQ?

jOOQ stands for Java Object Oriented Querying. It combines these essential features:

- + - +

How does jOOQ help you?