我是 PHP/MySQL 新手,也是 CodeIgniter 的新手。我在许多 MySQL 表中都有信息。我想用 JOIN 来检索它,其中表的主键等于 $variable... 我怎样才能做到这一点并获得所有没有主键字段的字段???
我现在正在做的是这个(这里只加入了两个表):
function getAll($id) {
$this->db->select('*');
$this->db->from('movies');
$this->db->join('posters', 'movies.id= posters.id');
// WHERE id = $id ... goes here somehow...
$q = $this->db->get();
if ($q->num_rows() == 1) {
$row = $q->row();
$data = array(
'id' => $row->id,
'title' => $row->title,
'year' => $row->year,
'runtime' => $row->runtime,
'plotoutline' => $row->plotoutline,
'poster_url' => $row->poster_url
);
}
$q->free_result();
return $data;
id (PK)、title、year、runtime 和 plotoutline 是第一个表中的列,poster_url 是第二个表中的字段。第二个表还包含一个我不想检索的 ID (PK) 列,因为我已经有了。