$select->columns(array('id','state','time'));
$select->where->lessThan('rec', $to)->and->greaterThan('rec', $from);
$select->order('rec ASC');
这是我的 sql 查询,用于获取基于某个范围的值。结果会给我一组特定的行。我想对此做一个mod操作。
就像,select * from table where rec mod 5 = 0;
它将返回每 5 条记录而不是所有记录。我怎么能在这里做到这一点?