cjackson111 Posted May 5, 2013 Share Posted May 5, 2013 Hello. I am pulling data, joining two MySQL tables (using php). When I use the following part in my select statement all rows are returned (which I want) even if it does not have a value for 'r_star' SELECT..... challnge.r_star ..... FROM.... But when I use the following, only rows are returned that have values for 'r_star' SELECT..... AVG(challnge.r_star) ..... FROM.... I want to find the average for the field r_star. Any ideas what I may be doing worng? Thanks! Quote Link to comment Share on other sites More sharing options...
Jessica Posted May 5, 2013 Share Posted May 5, 2013 How can it use them in the average if they don't have a value? $a = 1; $b = 2; What's the average of $a, $b and $c? Quote Link to comment Share on other sites More sharing options...
cjackson111 Posted May 5, 2013 Author Share Posted May 5, 2013 It should return the average value from the database fields Quote Link to comment Share on other sites More sharing options...
Jessica Posted May 5, 2013 Share Posted May 5, 2013 Cool story bro. Quote Link to comment 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.