Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These are examples taken from the mailing list.

Table of Contents

Sub-select

Code Block
java
java
// Define the sub query
DBCommand subCmd = db.createCommand();
subCmd.select(...);
// Wrap command for subquery
DBQuery SQ = new DBQuery(subCmd);

// Define the main query
DBCommand cmd = db.createCommand();
cmd.select(..);
cmd.select(SQ.findQueryColumn(...));
cmd.join(..., SQ.findQueryColumn(...));

...