close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Display total record count where date column is between two dates

Thread began 2/08/2015 9:41 am by Mags | Last modified 2/09/2015 2:14 pm by Mags | 4047 views | 7 replies

Mags

Sorry Jason, I should have explained more what I need to do. At the moment I have the following recordset:

<?php
$paramSession_rsAccountants = "-1";
if (isset($_SESSION['JFBMicroID'])) {
$paramSession_rsAccountants = $_SESSION['JFBMicroID'];
}
mysql_select_db($database_new_greenroom, $new_greenroom);
$query_rsAccountants = sprintf("SELECT *, COUNT(clients.AccountantID) FROM clients RIGHT OUTER JOIN accountants ON clients.AccountantID = accountants.AccountantID WHERE accountants.JFBMicroID = %s AND (clients.StagingDate BETWEEN '2015-02-01' AND '2015-02-28') GROUP BY accountants.AccountantID, clients.AccountantID", GetSQLValueString($paramSession_rsAccountants, "text"));
$rsAccountants = mysql_query($query_rsAccountants, $new_greenroom) or die(mysql_error());
$row_rsAccountants = mysql_fetch_assoc($rsAccountants);
$totalRows_rsAccountants = mysql_num_rows($rsAccountants);
?>

I then echo the total count for February using <?php echo $row_rsAccountants['COUNT(clients.AccountantID)']; ?>

However because I have 36 months' of data, I need to echo the total for each month separately from Feb 2015 - Feb 2018 and so would like to build the query into the PHP syntax rather than have 36 recordsets and query each one individually - it's just that I'm not great on PHP syntax!

So ideally I would like a basic recordset like:

<?php
$paramSession_rsAccountants = "-1";
if (isset($_SESSION['JFBMicroID'])) {
$paramSession_rsAccountants = $_SESSION['JFBMicroID'];
}
mysql_select_db($database_new_greenroom, $new_greenroom);
$query_rsAccountants = sprintf("SELECT *, COUNT(clients.AccountantID) FROM clients RIGHT OUTER JOIN accountants ON clients.AccountantID = accountants.AccountantID WHERE accountants.JFBMicroID = %s GROUP BY accountants.AccountantID, clients.AccountantID", GetSQLValueString($paramSession_rsAccountants, "text"));
$rsAccountants = mysql_query($query_rsAccountants, $new_greenroom) or die(mysql_error());
$row_rsAccountants = mysql_fetch_assoc($rsAccountants);
$totalRows_rsAccountants = mysql_num_rows($rsAccountants);
?>

and then put the date range in the individual PHP queries like:

<?php echo $row_rsAccountants['COUNT(clients.AccountantID)'] WHERE (clients.StagingDate BETWEEN '2015-02-01' AND '2015-02-28') ; ?>
<?php echo $row_rsAccountants['COUNT(clients.AccountantID)'] WHERE (clients.StagingDate BETWEEN '2015-03-01' AND '2015-03-31') ; ?>

I know that the syntax is wrong, but does that make sense?

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...