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();