![]() |
|
Welcome to the Computer Webmaster Gaming Console Graphics Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| |||||||
| Database Database problems or need to ask a question? maybe something to do with sql injections or a database software question. Database topics cover MySQL, PostgreSQL, Oracle, SQL Server or anything else related to databases. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| Hmm, perhaps I didn't explain myself too well on the problem I'm having with my database in my last post over a week ago. There's a table, which contains a timestamp field, amongst others. How would I write a query that does the following: 1. For each year, count all the records for that given year. There's approximately 6 years' worth. 2. Within each year, for each month, count all the records that matches the month (i.e. Feburary 2006). How would I go about achieving that? -- http://www.munted.org.uk Take a nap, it saves lives. | |||
| | #2 | ||
| Alex Buell wrote: > Hmm, perhaps I didn't explain myself too well on the problem I'm > having with my database in my last post over a week ago. There's a > table, which contains a timestamp field, amongst others. How would I > write a query that does the following: > > 1. For each year, count all the records for that given year. There's > approximately 6 years' worth. > 2. Within each year, for each month, count all the records that > matches the month (i.e. Feburary 2006). > > How would I go about achieving that? For the year totals you can do: SELECT year( entry ) , count( * ) FROM `guestbook` GROUP BY year( entry ) For the month totals you can do: SELECT concat_ws( '-', year( entry ) , month( entry ) ) , count( * ) FROM `guestbook` GROUP BY concat_ws( '-', year( entry ) , month( entry ) ) )) or SELECT left( entry, 7 ) , count( * ) FROM `guestbook` GROUP BY left( entry, 7 ) | |||
| Featured Websites | ||||
|
![]() |
| Tags: ear, earlier, ive, pigs, post |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Some changes have been made to the forum | MadKad | Community News And Reviews | 9 | 05-23-2008 6:59 PM |
| Anyone know whos made this site www.e-bedzz.com need one made for me | Roy G | Graphics in general | 0 | 06-12-2007 12:23 AM |
| Made in USA ? | Charles Bronson aka The Mechanic | Motherboards | 1 | 06-11-2007 1:07 PM |
| It made me laugh. | Mark | Ebay Technical Questions | 5 | 05-30-2007 1:36 AM |
| Anybody here ever really made any money. | Advanced Web Technologies | Building An Internet Business | 0 | 05-29-2007 1:44 AM |
| Featured Websites | ||||
|