私が使う
public function get_all_news()
{
$result = DB::select()
->from("parys_news")
->order_by("ID", "DESC")
->execute()
;
return $result;
}
クエリを作成します。今、クエリからレコードをカウントするための同様の関数を作成したいと思います
public function count_records($query)
{
}
コハナでそれを行う方法は?