# 排序
---
> 通过 ``order()`` 指定排序条件
需要传两个参数
第一个参数指定根据哪个字段进行排序
第二个参数指定是正序还是倒叙,默认不传为正序
| 排序规则 | 说明 |
| ---- | ---- |
| asc | 正序 |
| desc | 倒叙 |
```
this.Db('user').order('create_time','desc').select()
```
最终的SQL语句为
```
SELECT * FROM `user` ORDER BY `create_time` DESC
```