我正在使用phpMyAdmin,我有两个表:
___ SalesTaxes
|--------|----------|------------|
| STX_Id | STX_Name | STX_Amount |
|--------|----------|------------|
| 1 | Tax 1 | 5.00 |
| 2 | Tax 2 | 13.50 |
|--------|----------|------------|
___ BillableDatas
|--------|---------------|------------|------------|----------|---------------------|
| BIL_Id | BIL_BookingId | BIL_Date | BIL_Status | BIL_Rate | BIL_ApplicableTaxes |
|--------|---------------|------------|------------|----------|---------------------|
| 1 | 2 | 2018-03-06 | notcharged | 100.00 | 1 |
| 2 | 2 | 2018-03-07 | notcharged | 105.00 | 1,2 |
|--------|---------------|------------|------------|----------|---------------------|
我希望每天列出___BillableDatas
中的可结算内容列表,具体取决于事物的状态(收费与未收费)。
这样的事情:
|------------|-----------------|--------------------|------------------|--------------------|
| Date | BIL_Sum_Charged | BIL_Sum_Notcharged | Taxes_ForCharged | TaxesForNotCharged |
|------------|-----------------|--------------------|------------------|--------------------|
| 2018-03-06 | 0.00 | 100.00 | 0.00 | 5.00 |
| 2018-03-07 | 0.00 | 105.00 | 0.00 | 19.42 |
|------------|-----------------|--------------------|------------------|--------------------|
我实际上有什么:
SELECT b.BIL_Date,
ifnull(sum(case when b.BIL_Status = "charged" then b.BIL_Rate else 0 end), 0)
as BIL_Sum_Charged,
ifnull(sum(case when b.BIL_Status = "notcharged" then b.BIL_Rate else 0 end), 0)
as BIL_Sum_Notcharged,
ifnull(sum(case when b.BIL_status = "charged" then s.STX_Amount else 0 end), 0)
as STX_TAX_Charged,
ifnull(sum(case when b.BIL_status = "notcharged" then s.STX_Amount else 0 end), 0)
as STX_TAX_NotCharged
FROM ___BillableDatas b
INNER JOIN ___SalesTaxes s
ON FIND_IN_SET(s.STX_id, b.BIL_ApplicableTaxes) > 0
WHERE b.BIL_HotelId='cus_CNHLMiMOzP5cuM'
AND b.BIL_BookingId='2'
GROUP BY b.BIL_Date
ORDER BY b.BIL_Date
ASC
此查询出现问题我BIL_Sum_Charged
和BIL_Sum_NotCharged
没有正确的总和。
我210
而我应该105
申请BIL_Sum_Notcharged
2018-03-07。
我的错误在哪里?
请参阅SQL小提琴: http://sqlfiddle.com/#!9/e1208e/11
非常感谢你的帮助。
答案 0 :(得分:0)
这是我的建议,不确定它是最佳解决方案:
我骑了IFNULL,他们没有用。我除以","的数量。 1
SELECT b.BIL_Date,
SUM(case when b.BIL_Status = "charged" then b.BIL_Rate else 0 end
/ (1 + LENGTH(b.BIL_ApplicableTaxes)
- LENGTH( REPLACE ( b.BIL_ApplicableTaxes, ",", "") ) ))
as BIL_Sum_Charged,
SUM(case when b.BIL_Status = "notcharged" then b.BIL_Rate else 0 end
/ (1 + LENGTH(b.BIL_ApplicableTaxes)
- LENGTH( REPLACE ( b.BIL_ApplicableTaxes, ",", "") )))
as BIL_Sum_Notcharged,
SUM(case when b.BIL_status = "charged" then s.STX_Amount else 0 end)
as STX_TAX_Charged,
SUM(case when b.BIL_status = "notcharged" then s.STX_Amount else 0 end)
as STX_TAX_NotCharged
FROM ___BillableDatas b
INNER JOIN ___SalesTaxes s
ON FIND_IN_SET(s.STX_id, b.BIL_ApplicableTaxes) > 0
WHERE b.BIL_HotelId='cus_CNHLMiMOzP5cuM'
AND b.BIL_BookingId='2'
GROUP BY b.BIL_Date
ORDER BY b.BIL_Date ASC