例如出现BID为1673的两条重复数据,要第一条
select * from
(select no=row_number() over(partition by Bid order by getdate()),* from BidWinningNotice) t
where no=1 AND SID=238 AND BWMType=1
例如出现BID为1673的两条重复数据,要第一条
select * from
(select no=row_number() over(partition by Bid order by getdate()),* from BidWinningNotice) t
where no=1 AND SID=238 AND BWMType=1