On Friday 24 August 2007 15:06:50 Kexiao Liao wrote: > What is the best approach to implement table join in Zend Framework. For > example, I have two tables: A & B, they need to be joined based on > condition $where. What is the best way that we can implement this in Zend > Framework? Any comments are highly appreciated.
$select->innerJoin( table2, $where ); kabel
