当前位置:编程学习 > C#/ASP.NET >>

四个表的关联查询,都快把我搞糊了,请大家帮忙看一下,谢谢

表:Customer
字段:CustomerID , ShortName (客户简称)

表:Supplier
字段:SupplierID , ShortName (供应商简称)

表:Product
字段:ProductID , SupplierID , Name (产品名称)

表:ProductPirce
字段:ProductPriceID , ProductID , CustomerID , Price (产品价格)

前三个表全部为必填项,第四个表ProductPrice的CustomerID,允许为空

我需要检索的记录(我想需要使用到外连接查询吧)

ProductID , 产品名称 , 产品价格 , 客户简称 , 供应商简称 --------------------编程问答-------------------- 注意:有两个ShortName --------------------编程问答-------------------- 要是分少了,我在加吧。 --------------------编程问答-------------------- 大概的语法就是这样,没有测试,自己去修改。

SELECT ProductPirce.ProductID,Product.Name AS 产品名称,ProductPirce.Price AS 产品价格,Customer.ShortName AS 客户简称,Supplier.ShortName AS 供应商简称
From ProductPrice
INNER JION Product ON ProductPirce.ProductID=Product.ProductID
INNER JION Customer ON ProductPirce.CustomerID=Customer.CustomerID
--------------------编程问答-------------------- 谢谢,有个思路总是好的。 --------------------编程问答-------------------- 前3个用inner join ,最后一个用 left join 

select * from a inner join b on a.字段=b.字段
inner join c on b.字段=c.字段 left join d 
on c.字段=d.字段 



--------------------编程问答-------------------- SELECT product.productid,
product.name AS 产品名称,
productpirce.price AS 产品价格,
customer.shortname AS 客户简称,
supplier.shortname AS 供应商简称
from customer inner join productpirce on customer.customerid=productpirce.customerid
inner join product on productpirce.productid=product.productid inner join
supplier on product.supplierid=supplier.supplierid


试一试这个。 --------------------编程问答--------------------
引用 5 楼 wzy_love_sly 的回复:
前3个用inner join ,最后一个用 left join 

SQL code
select * from a inner join b on a.字段=b.字段
inner join c on b.字段=c.字段 left join d 
on c.字段=d.字段 


这个很好,得出了我想要的,同时产生了一个附加效果,但是是我不想要的,如果去掉呢?
原本是想再发个贴的,但是没有上下文的结合,不好理解,所以就在这里跟贴好了,我会增加贴子的分数的:50分
谢谢大家的帮助


新的问题,同一个ProductID下,客户简称,只取ProductPrice中ProductPriceID最大的一个

ProductID , 产品名称 , 产品价格 , 客户简称 , 供应商简称
ProductID , 产品名称 , 产品价格 , 客户简称 , 供应商简称
ProductID , 产品名称 , 产品价格 , 客户简称 , 供应商简称

--------------------编程问答--------------------
字段:ProductPriceID , ProductID , CustomerID , Price (产品价格) 


select * from a inner join b on a.字段=b.字段
inner join c on b.字段=c.字段 left join 
(select * from 表4 t where not exists(
select 1 from 表4 where ProductId=t.ProductId and ProductPriceId>t.productPriceId
))
on c.字段=d.字段 

照样式套进去就行了
--------------------编程问答-------------------- 取top的方法,当然取最大或最小都可以



--按某一字段分组取最大(小)值所在行的数据
/*
数据如下:
name val memo
a    2   a2(a的第二个值)
a    1   a1--a的第一个值
a    3   a3:a的第三个值
b    1   b1--b的第一个值
b    3   b3:b的第三个值
b    2   b2b2b2b2
b    4   b4b4
b    5   b5b5b5b5b5
*/
--创建表并插入数据:
create table tb(name varchar(10),val int,memo varchar(20))
insert into tb values('a',    2,   'a2(a的第二个值)')
insert into tb values('a',    1,   'a1--a的第一个值')
insert into tb values('a',    3,   'a3:a的第三个值')
insert into tb values('b',    1,   'b1--b的第一个值')
insert into tb values('b',    3,   'b3:b的第三个值')
insert into tb values('b',    2,   'b2b2b2b2')
insert into tb values('b',    4,   'b4b4')
insert into tb values('b',    5,   'b5b5b5b5b5')
go

--一、按name分组取val最大的值所在行的数据。
--方法1:
select a.* from tb a where val = (select max(val) from tb where name = a.name) order by a.name
--方法2:
select a.* from tb a where not exists(select 1 from tb where name = a.name and val > a.val)
--方法3:
select a.* from tb a,(select name,max(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
--方法4:
select a.* from tb a inner join (select name , max(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
--方法5
select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          3           a3:a的第三个值
b          5           b5b5b5b5b5
*/

--二、按name分组取val最小的值所在行的数据。
--方法1:
select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name
--方法2:
select a.* from tb a where not exists(select 1 from tb where name = a.name and val < a.val)
--方法3:
select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
--方法4:
select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
--方法5
select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val < a.val) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          1           a1--a的第一个值
b          1           b1--b的第一个值
*/

--三、按name分组取第一次出现的行所在的数据。
select a.* from tb a where val = (select top 1 val from tb where name = a.name) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          2           a2(a的第二个值)
b          1           b1--b的第一个值
*/

--四、按name分组随机取一条数据。
select a.* from tb a where val = (select top 1 val from tb where name = a.name order by newid()) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          1           a1--a的第一个值
b          5           b5b5b5b5b5
*/

--五、按name分组取最小的两个(N个)val
select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val < a.val ) order by a.name,a.val
select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val) order by a.name,a.val
select a.* from tb a where exists (select count(*) from tb where name = a.name and val < a.val having Count(*) < 2) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          1           a1--a的第一个值
a          2           a2(a的第二个值)
b          1           b1--b的第一个值
b          2           b2b2b2b2
*/

--六、按name分组取最大的两个(N个)val
select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name,a.val
select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val desc) order by a.name,a.val
select a.* from tb a where exists (select count(*) from tb where name = a.name and val > a.val having Count(*) < 2) order by a.name
/*
name       val         memo                 
---------- ----------- -------------------- 
a          2           a2(a的第二个值)
a          3           a3:a的第三个值
b          4           b4b4
b          5           b5b5b5b5b5
*/
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,