dongping1922 2016-06-10 04:52
浏览 33
已采纳

从多个表返回单个记录

I have a table structure like following:

Users => Histories <= Brands

Histories table keeps following columns: userId, brandId, points

I have a query like following:

select b.id, sum(h.points),h.brandId
from brands b left join
     histories h
     on b.id = h.brandid and h.userId = 2866
group by b.id;

This query returns me brands where USER made points and didnt make any points at all..

I wanna add a filter to a brandId as well so that the query doesn't returns all results, but a single result at a time depending what brandId has been sent to the query... How can I and where can I add a statement which would return me a single record for this query?? So basically I just need to pass brandId = to something statement, leaving the query it self as it is right now ... :)

  • 写回答

1条回答 默认 最新

  • doufu1970 2016-06-10 05:22
    关注

    For example if brand id is 100:

    select b.id, sum(h.points),h.brandId
    from brands b left join
         histories h
         on b.id = h.brandid and h.userId = 2866
    where b.id=100
    group by b.id
    limit 1;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部