Re: [PHP-DB] Sum function for multiple recordsets?

2008-01-02 Thread Chris

[EMAIL PROTECTED] wrote:

I'm getting a health insurance quote engine going...

http://www.insuranceshoppers.net/getquotes/short-term-health.php

... it sends me an email with the info, and enters the info into a leads 
table in mysql.
   
  Then I want to have it show the rates (on a new page using $_GET) from a table I have setup with the rates of multiple companies. Since the rates are based on age and gender and it could be 1 or 2 people plus the possibility of adding children (the total rate is just the sum of each persons individual rate), I've been working on making a recordset for the primary applicant, the spouse, and children and telling it to add them together. (that seems like the easiest way, but I'm a newbie)


My question: is there a php function or a way I can create the 3 recordsets in 
Dreamweaver and tell it to just add them up and display the results in a repeat 
region? And is this even the best way to approach it?


You could probably get the database to do this directly but without 
knowing what you're storing and what you have in the first place it's 
hard to tell.


select sum(rates) as totalrate from table where rateid in (1,2,3);

http://dev.mysql.com/doc/refman/4.1/en/group-by-functions.html#function_sum

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Sum function for multiple recordsets?

2007-12-24 Thread jay
I'm getting a health insurance quote engine going...

http://www.insuranceshoppers.net/getquotes/short-term-health.php

... it sends me an email with the info, and enters the info into a leads 
table in mysql.
   
  Then I want to have it show the rates (on a new page using $_GET) from a 
table I have setup with the rates of multiple companies. Since the rates are 
based on age and gender and it could be 1 or 2 people plus the possibility of 
adding children (the total rate is just the sum of each persons individual 
rate), I've been working on making a recordset for the primary applicant, the 
spouse, and children and telling it to add them together. (that seems like the 
easiest way, but I'm a newbie)

My question: is there a php function or a way I can create the 3 recordsets in 
Dreamweaver and tell it to just add them up and display the results in a repeat 
region? And is this even the best way to approach it?
   
  Cheers,
   
  Jay