我有这3张桌子:
adhocbills
表:
CREATE TABLE IF NOT EXISTS `adhocbills`
(
`sequence` bigint(11) NOT NULL AUTO_INCREMENT,
`status` varchar(200) NOT NULL,
`type` varchar(200) NOT NULL,
`invoice_number` varchar(200) NOT NULL,
PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
INSERT INTO `adhocbills` (`sequence`, `status`, `type`, `invoice_number`)
VALUES (1, 'Completed', 'Invoice', '1234');
adhocbills_lineitems
表:
CREATE TABLE IF NOT EXISTS `adhocbills_lineitems`
(
`sequence` bigint(11) NOT NULL AUTO_INCREMENT,
`bill_seq` varchar(20) NOT NULL,
`service` varchar(200) NOT NULL,
PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
INSERT INTO `adhocbills_lineitems` (`sequence`, `bill_seq`, `service`)
VALUES (1, '1', 'Service 1'), (2, '1', 'Service 2'),
(3, '1', 'Service 2');
billing_invoices
表:
CREATE TABLE IF NOT EXISTS `billing_invoices`
(
`sequence` bigint(20) NOT NULL AUTO_INCREMENT,
`invoice_number` varchar(200) NOT NULL,
`sub_total` float NOT NULL,
`vat_amount` float NOT NULL,
`grand_total` float NOT NULL,
`datetime` date NOT NULL,
`invoice_type` varchar(100) NOT NULL,
`status` varchar(200) NOT NULL DEFAULT 'Unpaid',
`total_charges` float NOT NULL,
`proforma` varchar(1) NOT NULL,
PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
INSERT INTO `billing_invoices`
(`sequence`, `invoice_number`, `sub_total`, `vat_amount`, `grand_total`, `datetime`, `invoice_type`, `status`, `total_charges`, `proforma`)
VALUES
(1, '1234', 100, 20, 120, '2016-09-01', 'Invoice', 'Unpaid', 100, '');
我有这个选择查询:
SELECT
COUNT(i.sequence) as counter,
l.service as service,
SUM(i.sub_total) as sub_total,
SUM(i.total_charges) as total_charges,
SUM(i.vat_amount) as vat_amount,
SUM(i.grand_total) as grand_total
FROM
billing_invoices i
LEFT JOIN
adhocbills a ON a.invoice_number = i.invoice_number
LEFT JOIN
adhocbills_lineitems l ON a.sequence = l.bill_seq
WHERE
i.proforma <> 'Y'
AND i.invoice_type = 'Invoice'
AND a.status = 'Completed'
AND DATE(i.datetime) >= '2016-09-01'
AND DATE(i.datetime) <= '2016-09-30'
GROUP BY
l.service
ORDER BY
grand_total DESC
我想做什么:
我想从当前月份的billing_invoices
中选择所有行,并将此表格链接到以下内容:
adhocbills.invoice_number = billing_invoices.invoice_number
adhocbills.sequence = adhocbills_lineitems.bill_seq
并使用现有的WHERE子句。
然后我按adhocbills_lineitems.service
分组
示例数据显示:
总计为1035.75
,但正确的金额为1017.26
,因此它会额外增加18.50
额外的18.50来自adhocbills_lineitems中的行:
bill_seq = 1068
unitprice = 8.50(new column, not important)
quantity = 1(new column, not important)
bill_seq = 1068
unitprice = 10(new column, not important)
quantity = 1(new column, not important)
所以这两行都链接到adhocbills.sequence = '1068'
似乎当adhocbills_lineitems
中有多个行与adhocbills_lineitems.service
不同时,它会复制它
迷你工作示例:
我得到了这个结果:
counter service sub_total total_charges vat_amount grand_total
2 Service 2 200 200 40 240
1 Service 1 100 100 20 120
哪一行服务2加倍dunno为什么?
答案 0 :(得分:1)
不是加入表,而是加入一个子查询,该子查询只返回您关心的唯一列,而不是所有重复列。
SELECT
COUNT(i.sequence) as counter,
l.service as service,
SUM(i.sub_total) as sub_total,
SUM(i.total_charges) as total_charges,
SUM(i.vat_amount) as vat_amount,
SUM(i.grand_total) as grand_total
FROM billing_invoices i
LEFT JOIN adhocbills a ON a.invoice_number = i.invoice_number
LEFT JOIN (
SELECT DISTINCT service, bill_seq
FROM adhocbills_lineitems
) l ON a.sequence = l.bill_seq
WHERE i.proforma <> 'Y' AND i.invoice_type = 'Invoice' AND a.status = 'Completed'
AND DATE(i.datetime) >= '2016-09-01' AND DATE(i.datetime) <= '2016-09-30'
GROUP BY l.service
ORDER BY grand_total DESC