I'm new to PHP/MySQL and super-new to CodeIgniter.. I have information in many MySQL tables. I want to retrieve it with JOIN where the tables primary keys are equal to $variable... How can I do it and get all the fields without the primary key field???
Ben şimdi ne yapıyorum (sadece iki tablo burada katıldı) şudur:
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), başlık, yıl, çalışma zamanı ve plotoutline ilk tablodan sütunlar ve poster_url ikinci tablodaki bir alandır. İkinci tabloda da ben zaten çünkü Al istemiyorum Kimlik (PK) sütun içerir.