sql中的排序使用倒序的步骤如下:
我们需要准备的材料分别是:电脑、sql查询器。
1、首先,打开sql查询器,连接上相应的数据库表,例如test表,以score字段倒序为例。
2、点击“查询”按钮,输入:select * from test order by score desc。
3、点击“运行”按钮,此时会发现score字段按倒序排序查询出了。
按id号从小到大排列sql = "select * from tablename order by id asc"
按id号从大到小排列
sql = "select * from tablename order by id desc"
select * from rrg order by Id descId:是你要排序的标准,即按ID的升、降序来排列显示,当然你也可以选用你表里的其他字段为标准!
desc:排序方式:desc为降序,asc为升序
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)