限制MySQL中的行总和

时间:2014-12-05 17:35:00

标签: mysql sum limit rows

我想限制product_p_description列中p_reference = 1A00001的总和,并且只显示总计p_quanity <= 21000的行。

以下是product_table的设计:

CREATE TABLE IF NOT EXISTS `product_table` (
  `p_id` int(11) PRIMARY KEY AUTO_INCREMENT NOT NULL,
  `p_description` varchar(50) NOT NULL,
  `p_reference` varchar(25) NOT NULL,
  `p_location` varchar(25) NOT NULL,
  `p_quantity` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

INSERT INTO `product_table` (`p_id`, `p_description`, `p_reference`, `p_location`, `p_quantity`) VALUES
(1, 'Product_1', '1A00001', 'AP07', 7000),
(2, 'Product_1', '1A00001', 'AF05', 6000),
(3, 'Product_1', '1A00233', 'DS07', 7000),
(4, 'Product_1', '1A00233', 'SD10', 5000),
(5, 'Product_1', '1A00001', 'YB12', 7000),
(6, 'Product_1', '1A00001', 'AN01', 7000),
(7, 'Product_1', '1A00001', 'AP04', 7000),
(8, 'Product_1', '1A00245', 'AP01', 7000),
(9, 'Product_1', '1A00001', 'QD01', 7000),
(10, 'Product_1', '1A00001', 'SC01', 7000);

1 个答案:

答案 0 :(得分:0)

您可以尝试创建一个正在运行的总变量,如下所示:

SET @runtot:=0;
SELECT p_id, p_description, (@runtot := @runtot + p_quantity) AS runningTotal
FROM product_table
WHERE @runtot + p_quantity <= 21000 AND p_reference = '1A00001';

这是SQL Fiddle。这将只返回找到的第一行,它不会返回可以实现此目的的每一组行。如果您正在寻找的只是满足这一要求的任何三行,它应该可以正常工作。