gpt4 book ai didi

php - 在我的案例中,如何在 mysql 查询中使用 case 语句?

转载 作者:行者123 更新时间:2023-11-29 22:33:06 25 4
gpt4 key购买 nike

我有一个公用事业账单表如下:

table: table_bill
-----------------------------------------------------------------------------
id | bill_type | month | year | lastdate | amount | latedate1 | lateamount1 | latedate2 | lateamount2|
------------------------------------------------------------------------------
1 | Electricity | Jan | 2015 | 2015-02-01 | 500 | 2015-03-01 | 550 | 2015-04-01 | 600
------------------------------------------------------------------------------
2 | Water | Jan | 2015 | 2015-03-01 | 200 | 2015-04-01 | 250 | 2015-05-01 | 300
-------------------------------------------------------------------------------
3 | Gas | Jan | 2015 | 2015-02-01 | 800 | 0000-00-00 | NULL | 0000-00-00 | NULL
--------------------------------------------------------------------------------

表说明:

电费和水费账单有逾期付款罚款,因此这些栏填满了数据,而燃气账单则没有逾期付款罚款。因此,Gas bill 的数据要么是日期 0000-00-00,要么金额为 Null。

现在,当我想查看2015-03-01的未付账单时,我想要如下表的未付账单:

table: html table
--------------------------------------------------------------
Bill Type | Month | Year | Next Payment Date | Payable Amount
--------------------------------------------------------------
Electricity | Jan | 2015 | 2015-03-01 | 550
--------------------------------------------------------------
Water | Jan | 2015 | 2015-03-01 | 200
--------------------------------------------------------------
Gas | Jan | 2015 | 2015-02-01 | 800
--------------------------------------------------------------

说明:由于电费单有逾期缴费罚款,而我查看的电费单是2015年3月1日,所以下一次缴费日期为2015年3月1日,应缴金额为550,含滞纳金。另一方面,水费单也有逾期付款的罚款,但由于没有滞纳金的最后日期是2015-03-01,所以下一个付款日期是2015-03-01,金额是200。由于煤气费没有逾期付款费用,所以下一个付款日期是 2015-02-01,尽管我查看的是 2015-03-01 的账单,应付金额是 800。

问题:如何进行 SELECT 查询从数据库表中提取数据以输出上述未付帐单表?

我想使用 CASE 语句,但对 CASE 语句不太了解。我尝试过以下查询:

$today = gmdate('Y-m-d', time()+21600);
SELECT bill_type, month, year,
CASE bill_type WHEN Electricity AND $today<=lastdate THEN lastdate
WHEN Electricity AND $today<=lastdate1 THEN latedate1
WHEN Electricity AND $today<=lastdate2 THEN lastdate2
WHEN Electricity AND $today<=lastdate3 THEN lastdate3
WHEN Water AND $today<=lastdate1 THEN latedate1
WHEN Water AND $today<=lastdate2 THEN lastdate2
WHEN Water AND $today<=lastdate3 THEN lastdate3
ELSE lastdate END) as ldate,
CASE bill_type WHEN Electricity AND $today<=lastdate THEN amount
WHEN Electricity AND $today<=lastdate1 THEN lateamount1
WHEN Electricity AND $today<=lastdate2 THEN lateamount2
WHEN Electricity AND $today<=lastdate3 THEN lateamount3
WHEN Water AND $today<=lastdate1 THEN lateamount1
WHEN Water AND $today<=lastdate2 THEN lateamount2
WHEN Water AND $today<=lastdate3 THEN lateamount3
ELSE amount END) as amount FROM table_bill

但是上面的查询不起作用,而且如果有更多的 bill_type(如卫生、互联网、网络主机等),它也太大了。对于每个 bill_type,我必须制作两个 CASE 语句,并且在每个 CASE 语句中我必须使用当......然后很多次。

如何使查询尽可能可行且简单?

最佳答案

我认为这里需要一些标准化。您的问题是由账单表中的冗余引起的,您应该将滞纳金从账单表中分开 - 达到具体逾期水平的附加费用,不包括账单金额*。这样你就可以:

SELECT
bill.type,
bill.month,
bill.year,
(bill.amount + SUM(IFNULL(latecharge.amount, 0))) AS amount
FROM bill
LEFT JOIN latecharge
ON latecharge.bill_type = bill.type // might be assigned to concrete bill (id)
AND latecharge.afterdate <= DATE(NOW()) //or some :date parameter
WHERE ...
GROUP BY bill.id

*) 新latecharge 表的一部分(基于电力示例):

id|..bill_type|.afterdate|amount
.1|Electricity|2015-03-01|....50 // additional 50 to Electricity bill's amount after 2015-03-01
.2|Electricity|2015-04-01|....50 // and another 50 after 2015-04-01

关于php - 在我的案例中,如何在 mysql 查询中使用 case 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29666270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com