如何从两个表中的一个表中存在ID的一个表中进行选择,而不是从另外两个表中的任何一个表中进行选择

时间:2013-04-06 18:26:01

标签: sql sql-server tsql sql-server-2005

这听起来令人困惑,但这个想法非常简单。

我想获得一个具有默认费率的产品列表,但是给定的“代理”没有费率。为此,我需要从下表中选择

    t_Products
|-ProductID-|--Product-|
|   100     | Product1 |
|   101     | Product2 |
|   102     | product3 |
|   103     | product4 |

在t_Annual_DefaultCost或t_Daily_DefaultCost中存在ID

    t_Annual_DefaultCost
|-DefaultID-|-ProductID-|--Cost-|
|    100    |     100   | 24.00 |
|    101    |     101   | 26.00 |

    t_Daily_DefaultCost
|-DefaultID-|-ProductID-|--Cost-|-Days-|
|    100    |     100   | 24.00 |   1  |
|    101    |     100   | 26.00 |   2  |
|    102    |     102   | 22.50 |   2  |
|    103    |     102   | 97.50 |   8  |

但对于给定的代理ID,它不能存在于t_Annual_AgentCost或t_Daily_AgentCost中

    t_Annual_AgentCost 
|---CostID--|-ProductID-|-AgentID-|--Cost-|
|    100    |    100    |  10001  | 24.00 |
|    101    |    100    |  10001  | 20.00 |

    t_Daily_AgentCost
|---CostID--|-ProductID-|-AgentID-|--Cost-|-Days-|
|    100    |     100   |  10001  | 24.00 |   1  |
|    102    |     102   |  10002  | 35.00 |   2  |

因此对于AgentID 10001,最终结果应为

|-ProductID-|--Product-|
|   101     | product2 |
|   102     | product3 |

,对于AgentID 10002,最终结果应为

|-ProductID-|--Product-|
|   100     | product1 |
|   101     | product2 |

我目前正在使用以下代码来获取具有默认费率的产品列表。 但我无法弄清楚如何在AgentCost表中删除/不获取那些。

Select 
    distinct a.* 
from 
    t_Products as a
inner join
    ( 
        select 
            DefaultID ,ProductID
        from 
            t_Daily_DefalutCost 

        union 

        select 
            DefaultID , ProductID
        from 
            t_Annual_DefaultCost 
    ) 
    as b on a.ProductID = b.ProductID

2 个答案:

答案 0 :(得分:1)

如果你想一次做一个Agent,那么我就是这样做的:

SELECT
    a.* 
FROM
    t_Products As a
WHERE
    (   EXISTS( SELECT * FROM t_Daily_DefaultCost  As d WHERE d.ProductID = a.ProductID )
     OR EXISTS( SELECT * FROM t_Annual_DefaultCost As d WHERE d.ProductID = a.ProductID )
     )
AND NOT
    (   EXISTS( SELECT * FROM t_Daily_AgentCost    As d 
                WHERE d.ProductID = a.ProductID
                AND   d.AgentID   = @SpecifedAgentID )
     OR EXISTS( SELECT * FROM t_Annual_AgentCost   As d 
                WHERE d.ProductID = a.ProductID
                AND   d.AgentID   = @SpecifedAgentID )
     )

这里的OR EXISTSUNION ALL SELECT的工作方式非常相似。

答案 1 :(得分:0)

我会用这种方法。

select yourfields
from yourtables
where id in 
(

(select id
 from onetable
 union
 select id
 from anothertable)
 except
 (select id
  from yetanothertable
  union
  select id
  from thefinaltable)
)

您可以填写实际的表名。