Jump to content

monthly totals


didgydont

Recommended Posts

hi all

im trying to display monthly totals but i cant get it to display the the year or month

$query = "SELECT type, SUM(Cost) FROM Income where type='income' GROUP BY Year(Date), Month(Date)";

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

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

i get this back

-income - $360.00

-income - $390.00

-income - $150.00

-income - $150.00

-income - $1140.00

-income - $680.00

-income - $990.00

-income - $780.00

-income - $805.00

-income - $480.00

-income - $480.00

-income - $678.75

-income - $540.00

-income - $1260.00

-income - $1150.00

-income - $710.00

-income - $120.00

no month or year at front i have tried a few other things like

 

$query = "SELECT type, SUM(Cost) FROM Income where type='income' GROUP BY DATE_FORMAT(`Date`, '%Y %m')";

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

// Print out result
while($row = mysql_fetch_array($result)){
echo $row['DATE_FORMAT(Date)'] . "-" . $row['type']. " - $". $row['SUM(Cost)'];
echo "<br />";
}

still no luck any ideas ?

Link to comment
Share on other sites

thank you

$query = "SELECT type, EXTRACT(YEAR FROM date) year, EXTRACT(MONTH FROM date) month, SUM(Cost) FROM Income where type='income' GROUP BY Year(Date), Month(Date) ORDER BY Date DESC";

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

// Print out result
while($row = mysql_fetch_array($result)){
echo  $row['year'] . "-" . $row['month'] . "-" . $row['type']. " - $". $row['SUM(Cost)'];
echo "<br />";
}

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.