[#1202] Add support for the relational division operation: A.divideBy(B).on(A.ID.equal(B.A_ID)).returning(A.X, A.Y, ...) - added some more Javadoc

This commit is contained in:
Lukas Eder 2012-03-06 19:04:35 +00:00
parent 3f38321bdf
commit 9ece8fc8b9

View File

@ -165,7 +165,10 @@ public interface Table<R extends Record> extends Type<R>, AliasProvider<Table<R>
* </pre></code>
* <p>
* 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 <code>on(...)</code> and
* <code>returning(...)</code> clauses.
* <p>
* For more information about relational division and some nice, real-life
* examples, see