2

我正在寻找以下解决方案:

  1. 进入用户表并找到在网站上列出项目的用户。在此用户表中,没有关于拍卖的列。相反,它使用键连接到帐户表(在帐户中,此列称为用户)

  2. 从这些 ID(列出拍卖物品的用户)中,我需要找到他们的帐户余额。这也在帐户表中。余额包含在名为 operation_amount 的列中。我还有另一个名为 operation_type 的列,它描述了用户的余额是正数还是负数。例如,如果 operation_type = 1,他有负余额,而如果 operation_type = 2,他有正余额。

现在我有另一个表tmpinvoice,其中有一个名为金额的列。这显示了用户需要向站点管理员支付多少费用。

鉴于此,我需要计算他总共必须支付多少。例如,如果用户有 200 美元的余额,我需要根据operation_type.

所以我有查询在哪里做这个只是为了记录

SELECT u.id AS id_user, u.nick,
  CASE ac.operation_type WHEN 1 THEN ac.operation_amount - tm.amount
                         WHEN 2 THEN ac.operation_amount + tm.amount
                                ELSE 'N/A' END AS `fee`                         
FROM auctionbg_search.accounts AS ac    
    LEFT JOIN auctionbg_search.users AS u ON TRUE
        AND u.id = ac.user
    LEFT JOIN auctionbg_search.auctions AS a ON TRUE
        AND a.id = ac.auction
    LEFT JOIN auctionbg_search.tmpinvoice AS tm  ON TRUE    
WHERE TRUE
  AND tm.amount = ac.operation_amount

这是我收到的结果

http://gyazo.com/3d7e7f52ee14d21cc8c8d33b6bbc479a

是的,但这仅计算列中的 1 个值的“费用”,如果用户有多个值怎么办

像这个用户:

http://gyazo.com/c3bdb29fa235044ab888dc0385bbcdbd

我需要从给定用户的 operation_amount 中计算总金额并tmpinvoice从该总金额中删除,

我的一个朋友告诉我使用

IF(SUM(ac.operation_amount), IS NULL , 0, sum(ac.operation_amount) 

并为 + 和 - 两种情况加入 2 个时间账户(表)

+ 加入 1 次, - 加入 2 次

但我不知道会是什么样子:)

4

1 回答 1

2

在 SUM 函数中使用 CASE 表达式。

   SELECT u.id AS id_user, u.nick,
     SUM(CASE ac.operation_type WHEN 1 THEN ac.operation_amount - tm.amount У
                                WHEN 2 THEN ac.operation_amount + tm.amount
                                       ELSE 'N/A' END) AS `fee`
    FROM auctionbg_search.accounts AS ac
      LEFT JOIN auctionbg_search.users AS u ON TRUE AND u.id = ac.user 
      LEFT JOIN auctionbg_search.auctions AS a ON TRUE AND a.id = ac.auction
      LEFT JOIN auctionbg_search.tmpinvoice AS tm  ON TRUE  
    WHERE TRUE AND tm.amount = ac.operation_amount
    GROUP BY u.id, u.nick       

见演示SQLFiddle

于 2013-08-05T07:36:33.860 回答