4

我在使用 sum 功能时遇到问题。所以基本上,我有 2 张桌子,paiment_typebills。在bills表中,我有一个外键名称fk_paiement_type,它可以让我知道该特定账单使用了哪种付款方式。

打印统计信息时,我这样做是为了按付款类型获取总数:

SELECT 
  pt.name,
  SUM(f.total_ttc) AS total_mode 
FROM
  bills AS f 
  INNER JOIN paiement_type AS pt 
    ON pt.id = f.fk_paiement_type 
WHERE (
    f.created BETWEEN '2013-01-10' 
    AND '2013-01-10'
  ) 
  AND (
    f.type LIKE 'facture' 
    OR f.type LIKE ''
  ) 
GROUP BY f.fk_paiement_type 

这段代码运行良好,但我实际上有 3 种不同的付款类型,有时白天只使用了其中的两种,如果它不存在,我仍然想显示它。

编辑:我已经尝试使用 IFNULL 功能,但它没有用。bills 表中的 fk_paiement_type 有时只会返回与 paiement_type 表匹配的 2 个值。我想我的问题来自这里:

INNER JOIN paiement_type AS pt ON pt.id = f.fk_paiement_type 

任何想法?

编辑2:

我的表结构如下:

**Bills Table**

id (int), 
fk_paiement_type (int), 
ref (varchar), 
fk_client (int), 
tss (double), 
total_ttc (double), 
type (varchar), 
created (datetime)

**Paiement_type Table**

id (int), 
name (varchar)

我试过你的最后一个答案,但它仍然没有用。现在,我只是在我的 Java 代码中绕过这个问题,但我希望有一种“干净”的方式来做这件事。

非常感谢你的帮助

4

2 回答 2

7

这里使用 ifnull

SELECT 
  pt.name,
  IFNULL(SUM(f.total_ttc),0) AS total_mode 
FROM
  factures AS f 
  INNER JOIN paiement_type AS pt 
    ON pt.id = f.fk_paiement_type 
WHERE (
    f.created BETWEEN '2013-01-10' 
    AND '2013-01-10'
  ) 
  AND (
    f.type LIKE 'facture' 
    OR f.type LIKE ''
  ) 
GROUP BY f.fk_paiement_type 

编辑 :

SELECT 
  pt.name,
  SUM(f.total_ttc) AS total_mode 
FROM
  bills AS f 
INNER JOIN (SELECT * FROM paiement_type GROUP BY fk_paiement_type) AS pt ON pt.id = f.fk_paiement_type 
WHERE (f.created BETWEEN '2013-01-10' AND '2013-01-10') AND (f.type LIKE 'facture' OR f.type LIKE '') 
GROUP BY f.fk_paiement_type 

我认为当您使用内部联接时会加入多个结果,因此限制内部联接以每组仅获取 1 条记录

于 2013-01-10T07:26:51.340 回答
0

尝试这个

   SELECT 
    f.thename,
     f.total_mode 
    FROM (SELECT name as thename , SUM(total_ttc) AS total_mode  from bills 
          WHERE (
           f.created BETWEEN '2013-01-10' 
           AND '2013-01-10'
          ) 
           AND (
                f.type LIKE 'facture' 
             OR f.type LIKE ''
               ) GROUP BY fk_paiement_type  ) f
    INNER JOIN paiement_type AS pt 
    ON pt.id = f.fk_paiement_type 
于 2013-01-10T08:35:31.007 回答