Mysql
 sql >> Base de données >  >> RDS >> Mysql

Est-il possible de mettre à jour une table JOINed à l'aide de l'enregistrement actif de Codeigniter ?

Essayez cette requête d'enregistrement actif pour la mise à jour avec les jointures :

function edit_save($data, $post_id, $user_id)
{
    $this->db->set($data)
    $this->db->where('post.user_id', $user_id);
    $this->db->where('post.post_id', $post_id);
    $this->db->where('post.data_id_fk = data.data_id');
    $this->db->update('post, data');
}