基于另一个表上的数据分离表上的数据

时间:2018-04-29 15:50:20

标签: sql sql-server-2008

我有两张如下表:

Table 1

Table 2

我希望能够根据表1中的产品类型对表2中的产品磅数据进行分类。如何在SQL中完成?

1 个答案:

答案 0 :(得分:1)

您可以使用日期列进行连接,并将每个日期的值相加

select a.productType, b.Date, sum(b.ProductPounds)
from table1 a
INNER JOIN table2 b on a.date = b.date
group by a.productType, b.date

或者如果你不需要总和,那么

select a.productType, b.Date, b.ProductPounds
from table1 a
INNER JOIN table2 b on a.date = b.date