close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Display database statistics without multiple recordsets

Thread began 7/23/2014 10:39 am by Dennis | Last modified 8/12/2014 2:30 pm by Dennis | 2062 views | 7 replies

Dennis

Thanks Jason, for clearing that up for me. I've wondered about that for some time.

The link you suggested above http://www.tizag.com/mysqlTutorial/mysqlsum.php (ps, they have very good tutorails) has the following example that I'm trying to understand how to use...

<?php
// Make a MySQL Connection

$query = "SELECT type, SUM(price) FROM products GROUP BY type";

$result = mysql_query($query) or die(mysql_error());

// Print out result
while($row = mysql_fetch_array($result)){
echo "Total ". $row['type']. " = $". $row['SUM(price)'];
echo "<br />";
}
?>

Would I put the "SELECT type, SUM(price) FROM products GROUP BY type" in a recordset and then hand code everything under it?

Also, if COUNT & SUM are used in a recordset, how does that help my dilemma of having to many recordsets? Is it because they provide many more results (statistics) with a single recordset?

Because I want to pick & choose what statistics I display, I went searching for a way to stack COUNT statements, I came across this example of code on stackoverflow. but I was able to get it to work (in a recordset) and echo the aliases...

SELECT
SUM(CASE WHEN Mbr_Status = 'Regular' THEN 1 ELSE 0 END) StatusRegular,
SUM(CASE WHEN Mbr_Status = 'App' THEN 1 ELSE 0 END) StatusApplicant,
SUM(CASE WHEN Mbr_Status = 'None' THEN 1 ELSE 0 END) StatusNone,
SUM(CASE WHEN Mbr_Status = 'Club' THEN 1 ELSE 0 END) StatusClub
FROM member_accounts

Does this look like a good (reliable & efficient) statement? I'm asking because I don't have a clue as to what it is doing with the if statements.

Thanks

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...