johnny Posted August 15, 2006 Share Posted August 15, 2006 Ok I have the following two queries that return a numeric value:QUERY 1:$query="SELECT CelebTotal.$weekFROM CelebTotal,scheduleWHERE CelebTotal.Celeb = schedule.f1AND schedule.week = $weekAND schedule.team = '1'";$res = mysql_query($query);while($row = mysql_fetch_assoc($res)){echo $row [$week].'<br>';}QUERY 2:$query="SELECT CelebTotal.$weekFROM CelebTotal,scheduleWHERE CelebTotal.Celeb = schedule.f2AND schedule.week = $weekAND schedule.team = '1'";$res = mysql_query($query);while($row = mysql_fetch_assoc($res)){echo $row [$week].'<br>';}I want to build a THIRD QUERY and I want that to return the SUM of the first two. I realize that I will likely have to build in the first two queries into this third query, so I've tried this:$query="SELECT CelebTotal.$weekFROM CelebTotal,scheduleWHERE CelebTotal.Celeb = schedule.f1AND schedule.week = $weekAND schedule.team = '1'";$res=mysql_query($query);while($rows = mysql_fetch_assoc($res));{$f1 = $rows[$week];};$query2="SELECT CelebTotal.$weekFROM CelebTotal,scheduleWHERE CelebTotal.Celeb = schedule.f3AND schedule.week = $weekAND schedule.team = '1'";$res2=mysql_query($query2);while($rows = mysql_fetch_assoc($res));{$f2 = $rows[$week];};$total= $f1 + $f2;print $total;But that comes back Resource Id #3.I have tried to do this:$res = mysql_query($query);$res2 = mysql_query($query2);$total = $res + $res2;print $total;but that always returns a numeric value of 7. the answer is not 7. heck I can change the queries to go fetch out different cells in the table and it still comes back 7.Help! Quote Link to comment Share on other sites More sharing options...
fenway Posted August 15, 2006 Share Posted August 15, 2006 Resource? That means you're dealing with the PHP object itself, not the value... BTW, there's probably a way to do this in a single query, but I'm a little busy now, and it's not popping into my head yet. 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.