利用order by进行排序,降序(从大到写)可以用desc,升序(从小到大)是默认的
select查询语句后加 order by 排序的字段 desc
需要用sql语句来处理。
比如原表数据如下:
现在要按出生日期从早到晚排列,并给出序号:
sql语句如下:
select
t.*
from
(select
t1.*,(select
count(*)+1
from
表2
as
t2
where
t2.出生日期
评论
0
0
加载更多
select 需要排序字段
order by 需要排序字段;