我收到错误错误号: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();