看看你碰到是不是这个问题
需要用sql语句来处理。
比如原表数据如下:
sql语句如下:
select t.* from(select t1.*,(select count(*)+1 from 表2 as t2 where t2.出生日期<t1.出生日期) as 序号 from 表2 as t1) as t
order by 序号
结果
欢迎分享,转载请注明来源:内存溢出
看看你碰到是不是这个问题
需要用sql语句来处理。
比如原表数据如下:
sql语句如下:
select t.* from(select t1.*,(select count(*)+1 from 表2 as t2 where t2.出生日期<t1.出生日期) as 序号 from 表2 as t1) as t
order by 序号
结果
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)