首页 > 其他 > 详细

查询两个表合并成一个表

时间:2018-07-11 13:27:56      阅读:158      评论:0      收藏:0      [点我收藏+]

select c.ClientID,c.Name,case MAX(c.Grade) when 0 then ‘厂家直营‘ when 1 then ‘总代理‘ when 2 then ‘省级代理‘when 3
then ‘省级代理‘ end Grade,MAX(d.CooperationIntention) as CooperationIntention,COUNT(*) as number,
ISNULL(c.IsEmphasis,0) IsEmphasis from SG_Client c inner join SG_Discuss d
on c.ClientID=d.ClientID where c.Leader=‘wzc‘ group by c.ClientID,c.Name,c.IsEmphasis
UNION ALL
select c.ClientID,c.Name,case MAX(c.Grade) when 0 then ‘厂家直营‘ when 1 then ‘总代理‘ when 2 then ‘省级代理‘when 3
then ‘省级代理‘ end Grade,MAX(d.CooperationIntention) as CooperationIntention,COUNT(*) as number,
2 IsEmphasis from SG_Client c inner join SG_Discuss d on c.ClientID=d.ClientID where
d.AssistDiscussPeople=‘wzc‘ group by c.ClientID,c.Name,c.IsEmphasis

查询两个表合并成一个表

原文:https://www.cnblogs.com/heyiping/p/9293532.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!