网上查了很多资料,基本上是原生方法,或者是只能查询一条:
以上为例,是否可以查询该表中所有数据的"_id"字段?
조건이 없을 경우 쿼리 필드를 지정하세요
$criteria = 새로운 EMongoCriteria(); $criteria->sort('posts_count',EMongoCriteria::SORT_DESC) ->한도(25) ->오프셋(0); $test_id = 그룹::model()->findAll($criteria); $test_id->next(); $_ids = 배열(); $name_id = 배열(); while($row = $test_id->current()){ $t = $row->속성; $name_id[] = array_splice($t,0,2); $_ids[] = $name_id; $test_id->next(); } $test_id = $_ids[count($_ids)-1]; 이것은 최후의 수단이지만 너무 어리석은 것 같습니다.
조건이 없을 경우 쿼리 필드를 지정하세요
$criteria = 새로운 EMongoCriteria();
$criteria->sort('posts_count',EMongoCriteria::SORT_DESC)
->한도(25)
->오프셋(0);
$test_id = 그룹::model()->findAll($criteria);
$test_id->next();
$_ids = 배열();
$name_id = 배열();
while($row = $test_id->current()){
$t = $row->속성;
$name_id[] = array_splice($t,0,2);
$_ids[] = $name_id;
$test_id->next();
}
$test_id = $_ids[count($_ids)-1];
이것은 최후의 수단이지만 너무 어리석은 것 같습니다.