从左外连接中选择最上面的一个
伙计们,我有一个查询,基本上选择我们的用户使用的最新浏览器。
这是我们的(简化的)表结构
HITS_TABLE
----------
USERID
BROWSER
HITSDATE
USER_TABLE
----------
USERID
USERNAME
,这是我查询用户使用的最新浏览器的方式
SELECT U.*, H.BROWSER
FROM USER_TABLE U
CROSS APPLY
(SELECT TOP 1 BROWSER
FROM HITS_TABLE
WHERE HITS_TABLE.USERID = U.USERID
ORDER BY HITS_TABLE.HITSDATE DESC
)as H
HITS_TABLE 是几天前刚刚添加的。
因此,该查询只是在我们添加 HITS_TABLE 后访问我们网站的用户,并消除其他查询。
这是示例案例
USER_TABLE
-------------------
USERID USERNAME
-------------------
1 'Spolski'
2 'Atwoord
3 'Dixon'
HITS_TABLE
------------------------------
USERID HITSDATE BROWSER
------------------------------
2 15/8/2009 'Firefox 3.5'
1 16/8/2009 'IE 6'
2 16/8/2009 'Chrome'
这是示例结果
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
但是,我想使用“未知”浏览器添加其他用户。 这是我想要的结果,
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
3 'Dixon' 'Unknown'
我相信它可以通过 LEFT OUTER JOIN 来实现。 但我总是这样:(我不想要这个结果)
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
2 'Atwoord' 'Firefox 3.5'
3 'Dixon' 'Unknown'
我希望我的问题很清楚。
Guys, I have a query where basically select the latest browser that our user used.
here is our (simplified) table structure
HITS_TABLE
----------
USERID
BROWSER
HITSDATE
USER_TABLE
----------
USERID
USERNAME
and here is how I query the latest browser that our user used
SELECT U.*, H.BROWSER
FROM USER_TABLE U
CROSS APPLY
(SELECT TOP 1 BROWSER
FROM HITS_TABLE
WHERE HITS_TABLE.USERID = U.USERID
ORDER BY HITS_TABLE.HITSDATE DESC
)as H
The HITS_TABLE is just added several days ago.
So, that query is just resulting users that visited our website after we added the HITS_TABLE, and eliminate the others.
Here is the sample case
USER_TABLE
-------------------
USERID USERNAME
-------------------
1 'Spolski'
2 'Atwoord
3 'Dixon'
HITS_TABLE
------------------------------
USERID HITSDATE BROWSER
------------------------------
2 15/8/2009 'Firefox 3.5'
1 16/8/2009 'IE 6'
2 16/8/2009 'Chrome'
Here is the sample result
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
But, I want to add other users with 'unknown' browser.
Here is my desired result
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
3 'Dixon' 'Unknown'
I believe it could be achieved by LEFT OUTER JOIN.
But I always had this: (I DO NOT want this result)
------------------------------
USERID USERNAME BROWSER
------------------------------
1 'Spolsky' 'IE 6'
2 'Atwoord' 'Chrome'
2 'Atwoord' 'Firefox 3.5'
3 'Dixon' 'Unknown'
I hope my question is clear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能子选择吗,不漂亮但应该可以..
Couldn't you sub select, not pretty but should work ..
对 hit_table 使用 userid 上的 group by 可以让您获取每个用户 ID 的 max() 命中日期。 我在下面的代码中将其称为“最新热门”。
在 USER TABLE 上选择并左连接到 LATEST HITS 允许您提取每个用户的记录。
返回到点击表,然后您可以提取与该日期关联的浏览器记录,或者对于其中没有记录的用户,提取空记录。
using a group by on userid against the hits_table allows you to get the max() hitsdate for each userid. I've called this LATEST HITS in the code below.
Selecting on the USER TABLE with a left join to LATEST HITS allows you to pull records for every user.
joining back onto the HITS TABLE then allwos you to pull the browser record associated with that date, or a null for users with no record in there.