0

i'm using the following code and get the following error

$select = $model->select();
$select->from(array('stocktakejob'), 
            array("ProductID" => "stocktakejob.ProductID",
                    "TotalCount" => "SUM(stocktakejob.NewCount)"
              )
       )->join(array('products'),
               'products.ProductID = stocktakejob.ProductID', 
               array("ProductCode" => "products.ProductCode")
       )->where("stocktakejob.StockTakeID = ".$stocktake->getStockTakeID())
       ->group('stocktakejob.ProductID');

error: Exception

Select query cannot join with another table

Is there something i'm missing ? anyhelp would be appreciated.

1 Answer 1

3

I think that you should set integrity check to false when making join statements:

$select->setIntegrityCheck(false);
Sign up to request clarification or add additional context in comments.

1 Comment

that was the answer thanks a million. cant believe i was missing that.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.