与Kohana Jelly一起使用'和'

时间:2010-09-22 15:59:40

标签: php kohana jelly

我正在计算数据库中与两个条件

匹配的行数
$rows = Jelly::select('brief')->where('creator_id', '=', $this->view->user->id, 'and', 'name', '=', $name)->count();

我很久以前就这样做了,忘记了怎么做。我想知道这是否是正确的做法。

我似乎无法通过Google找到答案。

1 个答案:

答案 0 :(得分:2)

$rows = Jelly::select('brief')->where('creator_id', '=', $this->view->user->id )->where('name', '=', $name)->count();