码迷,mamicode.com
首页 > 数据库 > 详细

SQL一对多特殊查询,取唯一一条

时间:2014-07-25 02:18:24      阅读:707      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   2014   re   c   div   

主表:

bubuko.com,布布扣

辅表:

bubuko.com,布布扣

一个app对应多个apk,现在要取上线(Apk_Status最大的)的应用

select * from [dbo].[tbl_APP] as app 
join 

(select * from [dbo].[tbl_Apk] as AA where not exists(select top 1 * from tbl_Apk as BB where AA.Apk_APPId=BB.Apk_APPId and AA.Apk_Status < BB.Apk_Status))

 as apk on app.APP_Id = apk.Apk_APPId

重点是取关联的右表:

select * from [dbo].[tbl_Apk] as AA where not exists(select top 1 * from tbl_Apk as BB where AA.Apk_APPId=BB.Apk_APPId and AA.Apk_Status < BB.Apk_Status)

没看懂这个not exists的逻辑 ~~

SQL一对多特殊查询,取唯一一条,布布扣,bubuko.com

SQL一对多特殊查询,取唯一一条

标签:style   blog   http   color   2014   re   c   div   

原文地址:http://www.cnblogs.com/New-world/p/3866581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!