我意识到Zend DB,Left Join SQL查询为连接列返回NULL.这是真的?
例如:
$selectmatchedtime = $this->dbo->select()
->from(array('v'=>'table1'))
->joinLeft(array('vc'=>'table2'),'vc.vid = v.vid');
为所有视频返回null …
最佳答案 问题是查询中的vid列属于两个表,但显然只能在结果集中存储单个值.要解决此问题,请为其创建别名,明确说明应使用哪个表:
$selectmatchedtime = $this->dbo->select()
->from(array('v'=>'table1'))
->joinLeft(array('vc'=>'table2'),'vc.vid = v.vid')
->columns(array('vid'=>'v.vid'));