You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by Michael Irving <mi...@keynetx.com> on 2007/03/20 15:46:48 UTC

SQL Join

I'm trying to figure out how to setup a join with findAll or
findByCondition.  Essentially, the query I want to do is something like:

SELECT col1, col2
  FROM WorkOrderItemFulfillment wf
      ,WorkEfforts we
  WHERE we.workeffortId = wf.workeffortId
    AND wf.workEffortParentId IS NULL;


Can someone point me in the right direction?

Thanks