Im using query mysql in phpmyadmin it's works correctly.
SET @runtot=0;
SELECT p_reference, p_id, p_description, (@runtot := @runtot + p_quantity) AS runningTotal
FROM (
SELECT p_reference, p_id, p_description, p_quantity
FROM product_table
WHERE p_description = 'product_1' AND p_quantity <= 21000
ORDER BY p_reference
) AS l
WHERE @runtot + p_quantity <= 21000;
but I have problem when used in file php, You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT p_reference, p_id, p_description, (@runtot := @runtot + p_quantity) AS ru' at line 2
THIS SOURCE CODE PHP
<?php
$connect = mysql_connect("localhost", "root", "");
mysql_select_db("datatest");
$query = mysql_query("SET @runtot=0;
SELECT p_reference, p_id, p_description, (@runtot := @runtot + p_quantity) AS runningTotal
FROM (
SELECT p_reference, p_id, p_description, p_quantity
FROM product_table
WHERE p_description = 'product_1' AND p_quantity <= 21000
ORDER BY p_reference
) AS l
WHERE @runtot + p_quantity <= 21000");
if($query === FALSE){
die(mysql_error());
}
while($data = mysql_fetch_assoc($query)){
echo $data['p_reference']." ".$data['p_quantity'];
}
?>
AND THIS SOURCE FOR CREATE 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);