i am using Join query in zend.. like
$select = $tablo->select()
->from(array('e' => 'EducationHistory'),
array('status_DataDictionary_id'))
->join(array('r' => 'ReportOrder'),
'e.id = r.EducationHistory_id',
array('reportOrderStatusId' => 'r.status_DataDictionary_id'))
->where('r.orderBy_Organization_id = ?', 4)
->where('r.orderBy_Person_id = ?', 1)
->group('e.enrollno');
and to do that i take help from http://framework.zend.com/manual/en/zend.db.select.html
ben bir hata oluştuğunda bu sorguyu çalıştırmayı denediğinizde ama bana söylemek hangi
Select sorgusu başka katılamaz
could any one help me.? Thanks in advance.... :)
tablo