日期:2014-05-17  浏览次数:20578 次

问一个两表联合查询的语句!! 十分感谢!!
我有两个表 表A为商品表:
ID     商品名称  售价     会员价
1 商品1 20 15
2 商品2 30 25

表B为库存表: 因为每次进货的价格都不一样所以就把库存和进货价分离了出来
ID     进货单号 进货数量     进货价格  关联表A的ID
1 j001 10 10 1
2 j002 15 11 1
3 j003 15 11 2

我想列出来每个商品的进货价格,售价和剩余库存总数;SQL语句该怎么写  十分感谢!!

select p.*,kc.sl as 库存数量 from p,kc where p.id = kc.glid
我只能写出来这种简单的  但是不符合我的需求额. - -


------解决方案--------------------
----------------------------
-- Author  :daxionglee(物是人非事事休,欲语泪先流!)
-- Date    :2012-12-13 13:23:08
-- Version:
--      Microsoft SQL Server 2008 (RTM) - 10.0.1600.22 (Intel X86) 
-- Jul  9 2008 14:43:34 
-- Copyright (c) 1988-2008 Microsoft Corporation
-- Developer Edition on Windows NT 6.1 <X86> (Build 7601: Service Pack 1)
--
----------------------------
--> 测试数据:[商品表]
if object_id('[商品表]') is not null 
drop table [商品表]
go 
create table [商品表]
(
[ID] int,
[商品名称] varchar(5),
[售价] int,
[会员价] int
)
insert [商品表]
select 1,'商品1',20,15 union all
select 2,'商品2',30,25
--> 测试数据:[库存表]
if object_id('[库存表]') is not null 
drop table [库存表]
go 
create table [库存表]
(
[ID] int,
[进货单号] varchar(4),
[进货数量] int,
[进货价格] int,
[AID] int
)
insert [库存表]
select 1,'j001',10,10,1 union all
select 2,'j002',15,11,1 union all
select 3,'j003',15,11,2
go


select
a.*,
b.总进货价格,
b.总进货数量
from
[商品表] as a
inner join
(
select
[AID],
sum([进货数量]*[进货价格]) as [总进货价格],
SUM([进货数量]) as [总进货数量]
from
[库存表]
group by
[AID]
) as b
on
a.ID=b.AID

/*
ID          商品名称  售价          会员价         总进货价格       总进货数量
----------- ----- ----------- ----------- ----------- -----------
1           商品1   20          15          265         25
2           商品2   30          25          165         15

(2 行受影响)


*/
库存什么的  怎么算  表给全