DaVuLf Posted May 19, 2006 Share Posted May 19, 2006 Is there a way to select a column in a table and sum all of the values? Like.. if I had a column for transactions, and I just wanted the grand total (irregardless of customer ID or any other value) how would I sum that?Then, how would I sum it be customer ID (regardless of product ID)? Any help would be appreciated. Thanks,DaVuLfEdit:[code]$query = "SELECT type, SUM(price) FROM products GROUP BY type";$result = mysql_query($query) or die(mysql_error());[/code] Link to comment https://forums.phpfreaks.com/topic/10018-sum-rows/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.