메소드 | 설명 | |
---|---|---|
between ( string $key, string $left, string $right ) : |
Converts the "normal" select into an index one. | |
limit ( integet $limit ) : |
Sets the maximum amount of records retrieved whithin the current SELECT. | |
orderBy ( string $order, boolean $append, boolean $first ) : |
Sets an orderBy part of the SELECT. | |
select ( array $projections, boolean $append ) : |
Sets the fields to select within the query ($projections). | |
skip ( $records ) | Sets the number of records to skip. |
select from index:name where x between 10.3 and 10.7
public limit ( integet $limit ) : |
||
$limit | integet | |
리턴 |
name DESC
.
With $append you can decide not to override previously-set orders.
You can decide wheter to put the $order at $first place among the set
orders.