sql数据库查询出来的数据从大到小排序

2025-01-20 16:25:00
推荐回答(4个)
回答1:

利用order by进行排序,降序(从大到写)可以用desc,升序(从小到大)是默认的

回答2:

select查询语句后加 order by 排序的字段 desc

回答3:

需要用sql语句来处理。
比如原表数据如下:
现在要按出生日期从早到晚排列,并给出序号:
sql语句如下:
select
t.*
from
(select
t1.*,(select
count(*)+1
from
表2
as
t2
where
t2.出生日期
评论
0
0
加载更多

回答4:

select 需要排序字段
order by 需要排序字段;