scmeeker Posted July 11, 2010 Share Posted July 11, 2010 I would like to use the SUM() to add up the column 'item_fee' under the current WHERE conditions and am not having any luck. Keeps coming up blank but when I remove the SUM() it shows just one. Here is the code I'm using: $get_item_sql = "SELECT id, image_upload_box, title, username, date, price, SUM(item_fee) FROM product WHERE MONTH(date) = MONTH(CURDATE()) AND username = '".$_GET["username"]."'"; Any suggestions? Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/207449-trying-to-use-sum/ Share on other sites More sharing options...
fenway Posted July 12, 2010 Share Posted July 12, 2010 My guess is that you didn't alias your expression, and you're asking for the value back from a hash. Quote Link to comment https://forums.phpfreaks.com/topic/207449-trying-to-use-sum/#findComment-1084829 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.