1

我使用活动记录将值插入数据库。

所有其他类型的查询我都使用自定义查询,因为它更容易,但活动记录插入非常好。

所以我有这个代码:

    $comment = array (
'point_id' => $object->id,
'title' => $object->title,
'comment' => $object->comment,
'author_name' => $object->author_name,
'is_temp' => 0,
'parent_id' => $object->parent_id

);
return $this->db->insert('comments', $comment);

现在我希望能够将 is_temp 设置为子查询结果,即:

(SELECT allow_user_comments from subjects where id='somevalue')

一个人如何做到这一点?

我希望避免使用第三方库。

4

2 回答 2

2

好吧,我怀疑这就是你应该这样做的事实,但 CI 不就是这样吗?

这就是我让它工作的方式(当然,从 $comment 数组中删除 is_temp):

$this->db->set($comment);
$this->db->set('is_temp',
'(SELECT allow_user_comments from subjects where id='.$subject_id.')',FALSE);
$this->db->insert('comments');  
于 2012-12-03T15:04:53.843 回答
0

随意使用https://github.com/NTICompass/CodeIgniter-Subqueries。我已经使用它并且它有效!希望它会有用。:-)

于 2012-12-03T14:54:40.030 回答