我有两个如下表
书
id TID reserveddate fee1 fee2 fee3 Noofplayers total
-------------------------------------
1 11 2012-11-25 100 200 300 3 800
2 12 2012-11-25 100 200 300 3 800
3 13 2012-11-28 200 100 200 1 500
球员
TID fee1 fee2
-------------------------------------
11 100 200
11 100 200
11 100 200
12 100 200
12 100 200
12 100 200
13 200 100
现在我想用 Reserveddate 分组从两个表中检索数据。
我有一个疑问,
select sum(b.fee1)+sum(b.fee2)+sum(a.fee3) as total
from Players b,book a where a.TID = b.TID and a.ReservedDate ='25-nov-2012'
group by a.ReservedDate
以上查询在 sum(fee3) 添加 3(noofplayers) 次我想添加一个时间表。
您能否根据客户要求更新查询...