繁体   English   中英

非唯一的 SQL 右连接

[英]SQL Right Join on Non Unique

我希望我想多了。 但我需要对一个没有唯一链接的列进行求和,当我这样做时,会将列加倍。

这是我当前的 SQL,直到我在vwBatchInData上添加连接,然后它将每条记录加倍,实现这一目标的最佳方法是什么?

select b.fldBatchID as 'ID',SUM(bIn.fldBatchDetailsWeight)  as 'Batch In', sum(t.fldTransactionNetWeight) as 'Batch Out' , format((sum(t.fldTransactionNetWeight) / sum(bIn.fldBatchDetailsWeight)),'P2' ) as 'Yield'
    from [TRANSACTION] t 
        right join vwBatchInData bIn on bIn.fldBatchID = t.fldBatchID
        inner join Batch b on b.fldBatchID = t.fldBatchID
    where CAST(b.fldBatchDate as date) = '2020-03-04'
group by  b.fldBatchID**

vwBatchInData 表

    +------------+---------------+-----------------------+
    | fldBatchID | fldKillNumber | fldBatchDetailsWeight |
    +------------+---------------+-----------------------+
    |       2862 |        601598 | 164.40                |
    |       2862 |        601599 | 190.80                |
    |       2862 |        601596 | 195.00                |
    |       2862 |        601597 | 200.20                |
    |       2862 |        601594 | 176.60                |
    +------------+---------------+-----------------------+

交易表

+------------+------------------+-------------------------+
| fldBatchID | fldTransactionID | fldTransactionNetWeight |
+------------+------------------+-------------------------+
|       2862 |         10242352 | 16.26                   |
|       2862 |         10242353 | 22.82                   |
|       2862 |         10242362 | 18.52                   |
|       2862 |         10242363 | 21.44                   |
|       2862 |         10242364 | 20.32                   |
+------------+------------------+-------------------------+

批处理表

+------------+-------------------------+
| fldBatchID |      fldBatchDate       |
+------------+-------------------------+
|       2862 | 2020-03-04 00:00:00.000 |
+------------+-------------------------+

使用上述 snipets 所需的输出

+------+----------+-----------+---------+
|  ID  | Batch In | Batch Out |  Yield  |
+------+----------+-----------+---------+
| 2862 | 927.00   | 90.36     | 10.76 % |
+------+----------+-----------+---------+

我认为您只想join之前聚合:

select b.fldBatchID as ID,
       (bIn.fldBatchDetailsWeight)  as batch_in,
       (t.fldTransactionNetWeight) as batch_out, 
       format(t.fldTransactionNetWeight / bIn.fldBatchDetailsWeight, 'P2' ) as Yield
    from batch b left join
         (select bin.fldBatchID, sum(fldBatchDetailsWeight) as fldBatchDetailsWeight
          from vwBatchInData bin
          group by bin.fldBatchID
         ) bin
         on bIn.fldBatchID = b.fldBatchID left join
         (select t.fldBatchID, sum(fldTransactionNetWeight) as fldTransactionNetWeight
          from transactions t
          group by t.fldBatchID
         ) bin
         on t.fldBatchID = b.fldBatchID 
    where CAST(b.fldBatchDate as date) = '2020-03-04';

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM