根据另一个表中的列值选择一个表中的行?

Posted

技术标签:

【中文标题】根据另一个表中的列值选择一个表中的行?【英文标题】:Select rows in one table, based on column values in another table? 【发布时间】:2020-02-16 23:16:47 【问题描述】:

我需要为另一个表中的每个匹配行选择一列。听起来很简单,但有一个转折点。

我有一个包含公司 ID 并定义公司的表。 我有另一个表格,定义了这些公司的部门。 我有第三个表,其中包含各种部门状态代码。

我下面的代码工作得很好,这正是我想要的。但是我必须硬编码到要查找的部门的查询中。我希望它根据它在“部门”表中找到的部门代码进行子选择,而不是要求我对该公司可能存在的每个可能的部门进行硬编码。

我需要根据 DepartmentsStatus 表中定义的公司存在的部门,从 DepartmentStatus 中选择匹配的部门状态。

我怀疑这是一个数据透视表,但它们比我的水平略高。

(公司表)

Company_ID  Company_Name
-------------------------
1       Home Office
2       Stanton Office
3       NYC Office

(部门表)

CompanyID   Department_Code
----------------------------
1           Sales
1           Inventory
1           Retail
1           Maint

2           OtherDept
2           ThatDept
2           BobsDept

(部门状态表)

Company_ID  Department  StatusCode
-----------------------------------------
1           Sales       InReview
1           Inventory   InReview
1           Retail      Ready
1           Maint       Done
2           OtherDept   InReview
2           ThatDept    Research
2           BobsDept    InReview

注意:我使用“TOP 1”,即使 Company_ID+Department 上有唯一索引,所以匹配的行永远不会超过一个。

因此,对于 Company_ID=1:

select  Company_ID,  
        (select top 1 StatusCode from DepartmentStatus ds where ds.Company_ID = cm.Company_ID and ds.Department='Sales') as SalesStatus
        (select top 1 StatusCode from DepartmentStatus ds where ds.Company_ID = cm.Company_ID and ds.Department='Inventory') as InvStatus
        (select top 1 StatusCode from DepartmentStatus ds where ds.Company_ID = cm.Company_ID and ds.Department='Retail') as RetailStatus
        (select top 1 StatusCode from DepartmentStatus ds where ds.Company_ID = cm.Company_ID and ds.Department='Main') as MaintStatus
from    Company cm
Where   cm.CompanyID=1

结果:

Company_ID      SalesStatus     InvStatus   RetailStatus    MaintStatus
--------------- --------------- ----------  -------------   ------------
1               InReview        InReview    Ready           Done

或者,对于 CompanyID=2:

select  Company_ID,  
        (select top 1 StatusCode from DepartmentStatus ds where ds.CompanyID = cm.Company_ID and ds.Department='OtherDept') as OtherDeptStatus
        (select top 1 StatusCode from DepartmentStatus ds where ds.CompanyID = cm.Company_ID and ds.Department='ThatDept') as ThatDeptStatus
        (select top 1 StatusCode from DepartmentStatus ds where ds.CompanyID = cm.Company_ID and ds.Department='BobsDept') as BobsDeptStatus
from    Company cm
Where   cm.CompanyID=2

结果:

Company_ID  OtherDeptStatus     ThatDeptStatus      BobsDeptStatus
----------  ----------------    --------------      --------------
2           InReview            Research            InReview

因此,对于公司 1,我需要获取 Departments Sales、Inventory、Retail 和 Maint 的状态。 但是对于公司 2,我需要获取部门 OtherDept、ThatDept 和 BobsDept 的状态。

我认为描述我正在尝试做的步骤是:

    从部门表中获取公司 1 的部门列表。 对于步骤 1 中的每个部门,查询 DepartmentStatus 表中的 Department 是否等于该部门。 对于公司 1,查询获取部门“销售、库存、零售和维护”的状态代码 对于公司 2,查询获取部门“OtherDept、thatDept 和 BobsDept”的 StatusCode。 等等等等

问题是,我不知道提前(在查询时)每个公司存在哪些部门,所以我需要根据每个公司实际存在的部门进行子选择。

还有其他一些 S.O.答案已经接近我的要求,建议使用 JOIN 来完成此操作,但是,它们都假设您在编写 join 语句时提前知道要查询的值。

我正在寻找解决此问题的方法,而不仅仅是对我当前尝试的更正。如果您对如何实现这一点有更好的想法,我很乐意看到它。

【问题讨论】:

听起来你想要一个动态的支点。这需要动态 SQL。我建议将结果放在每个部门的单独行中,而不是单独的列中。 【参考方案1】:

您似乎正在寻找条件聚合。使用这种技术,您的查询可以简化如下,以避免需要多个内联子查询:

select  Company_ID,  
        max(case when ds.Department='Sales' then ds.StatusCode end) as SalesStatus,
        max(case when ds.Department='Inventory' then ds.StatusCode end) as InvStatus,
        max(case when ds.Department='Retail' then ds.StatusCode end) as RetailStatus,
        max(case when ds.Department='Main' then ds.StatusCode end) as MaintStatus
from    
    Company cm
    inner join DepartmentStatus ds on ds.Company_ID = cm.Company_ID 
Where   cm.CompanyID=1
group by cm.CompanyID 

【讨论】:

嘿,谢谢。但是,请注意您是如何在该查询中硬编码“销售”的?我只知道可以在DepartmentStatus 表中查询“Sales”,因为它是在CompanyDepartment 表中定义的。有许多公司,并且为每个公司定义了许多不同的部门。在从 CompanyDepartment 表中获取它们之前,我不知道要在 Status 表中查找哪些 Departments。明白我的意思了吗? 好悲痛。 7个月,我忘了把这个标记为答案。这并不完全是答案,但它肯定会让我得到答案,只需稍加修改即可。【参考方案2】:

这将是我(未经测试的)穴居人解决问题的方法。 您唯一需要提前知道的是,您所在的公司有多少个不同的部门,并且部门最多。

DROP TABLE IF EXISTS Iddepartmentstatus;

DECLARE @Result TABLE(
                      Companyid   INT, 
                      Department1 NVARCHAR(MAX), 
                      Department2 NVARCHAR(MAX), 
                      Department3 NVARCHAR(MAX), 
                      Department4 NVARCHAR(MAX), 
                      Department5 NVARCHAR(MAX));

CREATE TABLE Iddepartmentstatus(
             Num        INT IDENTITY(1, 1), 
             Department NVARCHAR(MAX), 
             Statuscode NVARCHAR(MAX));

DECLARE @IDCompany TABLE(
                         Num         INT IDENTITY(1, 1), 
                         Companyid   INT, 
                         Companyname NVARCHAR(MAX));

INSERT INTO            @IDCompany (Companyid, 
                                   Companyname) 
       SELECT Company_Id, 
              Company_Name
       FROM   Company;

DECLARE @Departmentcount       INT = 0, 
        @Departmentstatuscount INT = 0, 
        @Companycount          INT = 0;

WHILE @Companycount <=
(
    SELECT MAX(Num)
    FROM   @IDCompany)
    BEGIN
        INSERT INTO                    Iddepartmentstatus (Department, 
                                                           Statuscode) 
               SELECT Department, 
                      Statuscode
               FROM   Departmentstatus
               WHERE  Company_Id = @Companycount;

        INSERT INTO         @Result (Companyid) 
               SELECT @Companycount AS T;

        INSERT INTO         @Result (Department1) 
               SELECT   IIF(1 <=
               (
                   SELECT MAX(Num)
                   FROM   @IDCompany), Department + ': ' + Departmentstatus, NULL)
               FROM Iddepartmentstatus
               WHERE    Num = 1;

        INSERT INTO         @Result (Department2) 
               SELECT   IIF(2 <=
               (
                   SELECT MAX(Num)
                   FROM   @IDCompany), Department + ': ' + Departmentstatus, NULL)
               FROM Iddepartmentstatus
               WHERE    Num = 2;

        INSERT INTO         @Result (Department3) 
               SELECT   IIF(3 <=
               (
                   SELECT MAX(Num)
                   FROM   @IDCompany), Department + ': ' + Departmentstatus, NULL)
               FROM Iddepartmentstatus
               WHERE    Num = 3;

        INSERT INTO         @Result (Department4) 
               SELECT   IIF(4 <=
               (
                   SELECT MAX(Num)
                   FROM   @IDCompany), Department + ': ' + Departmentstatus, NULL)
               FROM Iddepartmentstatus
               WHERE    Num = 4;

        INSERT INTO         @Result (Department5) 
               SELECT   IIF(5 <=
               (
                   SELECT MAX(Num)
                   FROM   @IDCompany), Department + ': ' + Departmentstatus, NULL)
               FROM Iddepartmentstatus
               WHERE    Num = 5;

        TRUNCATE TABLE Iddepartmentstatus;
        SET @Companycount = @Companycount + 1;
    END;
DROP TABLE IF EXISTS Iddepartmentstatus;

【讨论】:

以上是关于根据另一个表中的列值选择一个表中的行?的主要内容,如果未能解决你的问题,请参考以下文章

用另一个表中的列值替换列的空值

在另一个表的 select 子句中使用一个表中的列值

根据另一个工作表中的可见范围删除行

如何根据从另一个表中选择的结果更新一个表中的列

根据 SQL Server 中表中的列值从两个表中获取一个新表:

基于不同表的行值对表中的列值求和