app->db->name('DataArticleContent')->where(['id' => $cid])->update([ 'number_likes' => $this->app->db->name('DataArticleLike')->where(['cid' => $cid])->count(), 'number_comment' => $this->app->db->name('DataArticleComment')->where(['cid' => $cid])->count(), 'number_collection' => $this->app->db->name('DataArticleCollection')->where(['cid' => $cid])->count(), ]); } }