diff --git a/jOOQ/src/main/java/org/jooq/Table.java b/jOOQ/src/main/java/org/jooq/Table.java index 66a4cb785d..0f8704c11c 100644 --- a/jOOQ/src/main/java/org/jooq/Table.java +++ b/jOOQ/src/main/java/org/jooq/Table.java @@ -165,7 +165,10 @@ public interface Table extends Type, AliasProvider * *

* Or in plain text: Find those TEXT values in C whose ID's correspond to - * all ID's in B. + * all ID's in B. Note that from the above SQL statement, it is immediately + * clear that proper indexing is of the essence. Be sure to have indexes on + * all columns referenced from the on(...) and + * returning(...) clauses. *

* For more information about relational division and some nice, real-life * examples, see