Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8222623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:20:35+00:00 2026-06-07T14:20:35+00:00

Hi I have an SQL server database with 3 columns Activity[start_date(datetime),end_date(datetime),title(string)] and I wish

  • 0

Hi I have an SQL server database with 3 columns Activity[start_date(datetime),end_date(datetime),title(string)]
and I wish to count for a whole year, how many activities have start_date in each month, I mean I would like a return of 12 values(12 months) that count the activities within the months, thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:20:37+00:00Added an answer on June 7, 2026 at 2:20 pm

    If there is an index on start_date and/or if you need to include months in the result even if there was no activity in that month, you might consider this one:

    DECLARE @year INT;
    SET @year = 2012;
    
    ;WITH n AS 
    (
      SELECT TOP (12) m = DATEADD(MONTH, ROW_NUMBER() OVER 
        (ORDER BY name)-1, DATEADD(YEAR, @year-1900, 0))
        FROM sys.all_objects ORDER BY name
    )
    SELECT [Month] = n.m, ActivityCount = COUNT(t.title) 
    FROM n 
    LEFT OUTER JOIN dbo.unspecified_table_name AS t
      ON t.start_date >= n.m
      AND t.start_date < DATEADD(MONTH, 1, n.m)
    GROUP BY n.m
    ORDER BY [Month];
    

    (If you don’t want a row when there were zero activities in a given month, then change LEFT OUTER to INNER.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table in SQL Server 2005 database that has following columns: Id,ProductName,Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
I have a Database (SQL Server) with table named 'ProcessData' and columns named 'Process_Name'
I have a few columns in an SQL server 2008 R2 database that i
I have a SQL Server database with an Apartment table (which has columns FloorNum
I have a large SQL Server database with about 40 columns and hundreds of
I have SQL Server 2008 database with 2 tables: Table A has columns ID
I have a table in a SQL Server 7.0 database with columns like: Column_1
I have stored my tags in the SQL Server database, TABLE NAME: Tags COLUMNS
We have SQL Server 2000 database with money data type columns and we have
I have a SQL Server 2008 database table with three varchar Columns - Col1,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.