distinct合并问题,如何取合并前的最新时间 我有一个表,其中有五条数据,其中答题流水号,姓名等都相同,但日期不同,我想把相同的流水号合并,并提取最新的日期显示在上面,怎么显示,distinct语句是这样的
select distinct groupid_top,kh,xm,xb,nl,fdbh from GLZX_WJDTB_ZB WHERE 1=1
合并后的结果如下图,但要加上最新日期,语句怎么写
c#?distict??合并select
分享到:
------解决方案--------------------
select [答题流水号],[姓名],max([日期]) from 你的表
group by [答题流水号],[姓名]
------解决方案-------------------- select * from GLZX_WJDTB_ZB where in in(select max(id) from GLZX_WJDTB_ZB group by 流水号) ------解决方案--------------------
用2楼的方法,使用group by吧。 ------解决方案-------------------- select distinct groupid_top,kh,xm,xb,nl,fdbh,
(select max(日期) frm glzx_wjdtb_zb b where b.groupid_top = a.groupid_top
and a.kh = b.kh and a.xm = b.xm --这个条件你自己定
) 日期
from GLZX_WJDTB_ZB a WHERE 1=1