TM> id - price
TM> 1 1000
TM> 2 300
TM> 3 200
TM> How to sum up price row ?
This can be done by MySQL rather than PHP.
mysql_query ("SELECT SUM (price) FROM table");
--
Andrew Perevodchik
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail
On Tue, 11 Sep 2001 11:51:05 +0200, you wrote:
> How to sum up all the values from a MySQL row ex.
>id - price
>1 1000
>2 300
>3 200
>
>How to sum up price row ?
SELECT SUM(price)
unsurprisingly enough...
djo
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-ma
2 matches
Mail list logo