gpt4 book ai didi

php - ZF2 查询结果不正确

转载 作者:行者123 更新时间:2023-11-30 22:21:58 24 4
gpt4 key购买 nike

我在模型中有一个查询:

public function loadPerform(){
$select = $this->select()
->from(array('p' => $this->_tables['performance']))
->join(array('phc' => $this->_tables['perf_has_component']), 'phc.performance_id=p.performance_id', array('*'), 'left');
//echo str_replace('"','',$select->getSqlString())."<br />";
return $this->fetchAll($select);
}

结果是:

Array([0]=>Array(
[performance_id]=>
[title]=>Performance11
[description]=>haha
[create_dtm]=>2016-04-0500: 14: 54
[create_by]=>90141063
[phc_id]=>
[last_update_dtm]=>
[update_by]=>
))

它有效,但它没有在结果中显示 performance_id。我的查询有什么问题??谢谢

最佳答案

请修改您的查询:

$select = $this->select()
->from(array('p' => $this->_tables['performance']),array('performance_id'))
->join(array('phc' => $this->_tables['perf_has_component']), 'phc.performance_id=p.performance_id', array('*'), 'left');

关于php - ZF2 查询结果不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36416652/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com