我想实现以下目标,但不确定如何执行,指向正确方向的任何查询都会有很大帮助。
表格:我下面有三个表格#
Merchant(MerchantId, Name, Date),
MerchantCategory(MerchantId, CategoryId),
Category (CategoryId, Name)
如何使用category name
返回Merchant count
,Merchant name
,max date
答案 0 :(得分:1)
根据要求,我理解每个类别应有1行,应显示商家数量,并应显示最近日期的商家名称。
我在下面准备了一个查询,该查询会生成一些示例数据,并提供我所理解的预期结果。
此方法的工作方式是通过将商人类别表连接到类别表,然后计算每个类别的商人ID来计算商人数量。名称比较棘手,需要使用外部应用,即每个类别(每行)计算出由max(date)desc排序的商人表中的前1个名称
希望对您有帮助,如有任何问题,请告诉我。
declare @Merchant table (
MerchantId int,
Name nvarchar(25),
Date Date
);
declare @MerchantCategory table (
MerchantId int,
CategoryId int
);
declare @Category table (
CategoryId int,
Name nvarchar(25)
);
insert into @Merchant (MerchantId, Name, Date)
values
(1, 'Lucy', '2019-01-05'),
(2, 'Dave', '2019-01-30'),
(3, 'Daniel' ,'2019-02-01');
insert into @MerchantCategory (MerchantId, CategoryId)
values
(1, 4),
(1, 5),
(2, 4),
(3, 5);
insert into @Category (CategoryId, Name)
values
(4, 'Cat1'),
(5, 'Cat2');
select c. Name, max(m.name) as MaxMerchantName, count(distinct mc2.merchantid) as Merchantvol from @Category c
left join @MerchantCategory mc2 on c.CategoryId=mc2.CategoryId
outer apply (select top 1 name, max(date) as date from @Merchant m inner join @MerchantCategory mc on m.MerchantId=mc.MerchantId where c.CategoryId=mc.CategoryId group by Name order by max(date) desc) m
group by c.Name;
答案 1 :(得分:0)
我希望看到您的努力。
所以现在违反了SO原则。
尝试一下:
select c.Name as category_name, count(*) as Merchant_Count, m.Name as Merchant_Name, max(Date) from
Merchant m join MerchantCategory mc
on m.MerchantId = mc.MerchantId
join Category c
on mc.CategoryId = c.CategoryId
group by c.Name, m.Name