我使用活动记录将值插入数据库。
所有其他类型的查询我都使用自定义查询,因为它更容易,但活动记录插入非常好。
所以我有这个代码:
$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')
一个人如何做到这一点?
我希望避免使用第三方库。