0

我收到错误错误号:1066

不是唯一的表/别名:'fixed_asset_reissue'

SELECT * FROM 
(`fixed_asset_reissue`, `fixed_asset_reissue`) 
RIGHT JOIN `fixed_asset_distribution` ON 
`fixed_asset_distribution`.`fixed_asset_list_id`=
`fixed_asset_reissue`.`fixed_asset_list_id` 
WHERE `customer` = 'R/00567/00'

代码是

$get2= $this->db->select('*')
           ->from('fixed_asset_reissue')
           ->join('fixed_asset_distribution','fixed_asset_distribution.fixed_asset_list_id=fixed_asset_reissue.fixed_asset_list_id','right')
            ->where('customer',$cust_id);
    $data['reissue']=$get1->get('fixed_asset_reissue')->result();
4

1 回答 1

2

从获取声明或从声明中删除此“fixed_asset_reissue”表格。这就是问题

于 2012-04-23T13:25:37.803 回答