当前位置: 代码迷 >> Sql Server >> 求SQL 語句,该如何解决
  详细解决方案

求SQL 語句,该如何解决

热度:75   发布时间:2016-04-27 20:10:55.0
求SQL 語句
表: 
Year   int   ,Month   int,     GID   int,   Price   int  
年,月,商品,采購價格
求全部商品,最後一次采購的價格。

------解决方案--------------------
表: 
Year int ,Month int, GID int, Price int

select * from 表 a
where not exists (
select 1 from 表
where GID=a.GID
and ([Year]> a.[Year]
or [Year]=a.[Year]
and [Month]> a.[Month]
)
)
  相关解决方案