|
发表于 2010-5-14 11:43:45
|
显示全部楼层
function get_goods_info($cid) {
$this->db->select('colum1');
$this->db->from('table1');
$this->db->where('uid', $id);
$this->db->join('table2', 'table1.colum2=table2.colum1', 'left');
$query = $this->db->get();
return $query->result();
} |
|