select *
from (
select soft.NETMODEL,
soft.softname,
soft.softid,
soft.SOFTVER,
soft.createdate,
row_number() over(partition by softname order by softId desc) indexId
from ZTEspt_Soft_File soft
where soft.softkind = 7)
where indexId = 1;
要解决的问题
已解决的效果