Jump to content

Help with MYSQL query


1042

Recommended Posts

Im trying to run this query to get totals on per month basis, so far this is what i have below;

 

PHP Code:

//run the query to get the totals on per month basis//
            $query = "SELECT order_date, SUM(grand_total) FROM order_details WHERE order_status='completed' GROUP BY order_date order by order_date";
    
          $result = mysql_query($query) or die(mysql_error());

         // Print out results
         while($row = mysql_fetch_array($result)){

         $order_date=$row['order_date'];
        
    // show the results by month//    
    echo "$order_date = $". $row['SUM(grand_total)'];
    echo "<br />";
}

 

this returns the following format:

2007-06-19 17:51:15 = $117.69

2007-06-19 17:58:57 = $76.99

2007-06-19 18:08:46 = $137.5

2007-06-19 18:22:25 = $94.19

2007-06-20 10:57:50 = $82.41

2007-06-21 15:09:21 = $94.19

2007-07-17 11:05:39 = $94.2

2007-08-19 17:52:52 = $26.5

 

but what i would like is to get the following format

july, 2007 = $total

June, 2007 =$total

 

in other words group the totals for the month for each month, hope i made sense.

what would be the best way to do this? thanks all for the help

Link to comment
Share on other sites

if you only want to show the month, do some parsing.. rip the month out of the numerical date.

 

$newdate = substr($order_date,5,6);

 

then a simple case statement,

 

switch ($newdate) {

 

case "01":

$month = "January";

break;

 

}

etc..

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.