2

我有两张桌子。一个是Employee_Mstr,另一个是EmployeeLeaveRequest_mstr

我的数据:

我的数据

4

5 回答 5

3

使用GROUP BY.

select t1.emp_cd, t1.emp_name, sum(t2.num_dy) from 
  Employee_Mstr t1 left join 
  EmployeeLeaveRequest_mstr t2 on t1.emp_cd = t2.emp_cd group by t1.emp_cd, t2.emp_name;
于 2012-06-11T07:54:30.340 回答
2
SELECT tab1.emp_cd, tab1.emp_name, SUM(tab2.num_dy)
FROM Employee_Mstr tab1, "2nd Table Records" tab2
where tab1.emp_cd = tab2.emp_cd
group by tab1.emp_cd, tab1.emp_name;

应该可以,只需为第二个表设置正确的表名。

于 2012-06-11T07:54:08.687 回答
0
select mstr.Emp_cd, mstr.Emp_Name, isnull(sum(det.num_dy), 0) as num_day
from dbo.Employee_Mstr mstr
left join dbo.Employee_Nums det on (mstr.Emp_cd = det.Emp_cd)
group by mstr.Emp_cd, mstr.Emp_Name;

应该做的工作。

这是SQL执行的结果:

Emp_cd      Emp_Name
----------- --------------------------------------------------
1           A
2           B
3           C

(3 row(s) affected)

Emp_cd      num_dy
----------- -----------
3           4
3           2

(2 row(s) affected)

Emp_cd      Emp_Name                                           num_day
----------- -------------------------------------------------- -----------
1           A                                                  0
2           B                                                  0
3           C                                                  6
Warning: Null value is eliminated by an aggregate or other SET operation.

(3 row(s) affected)
于 2012-06-11T08:03:17.530 回答
0

制作pk emp_cd主键,然后使用left join. 然后您可以使用sumof添加值,groupby在添加值之前使用。

如果您愿意,只需查看 w3school.com。

于 2012-06-11T07:53:57.280 回答
0

尝试这个:

select t1.cd, t1.name, sum(t2.num_dy) from employee_Mstr t1 
left join EmployeeLeaveRequest_mstr t2 on t1.cd = t2.cd group by t1.cd, t1.name;
于 2012-06-12T03:21:04.187 回答