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 8612051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T04:31:53+00:00 2026-06-12T04:31:53+00:00

I have a table called tours in which I have following fields tourId, tourStartDate,

  • 0

I have a table called tours in which I have following fields

tourId, tourStartDate, tourEndDate , tourDetail ,deptCode,targetYear, and officerName

Now i want to summarize my data into months
so result table should look like by following schema

declare @temp table (
  id int identity(1,1) not null,
  officerName, 
  jan int ,feb int,
  march int,april int, 
  may int,
  june int ,
  july int, 
  aug int,
  sep int, 
  oct int, 
  nov int, 
  dec int
);
select * from  @temp

I tried with with cte to traverse each row and using case to insert in temporary table but its not look like good solution so any clue or guide really help me a lot.

count of tours done by officer in that month will appear in month column as value

EDITED

A tour with starting date in jan and ending date in some other month, say feb then its value will appear in both month

  • 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-12T04:31:54+00:00Added an answer on June 12, 2026 at 4:31 am

    To make it appear in both months, UNION the query parts of (1) by start date (2) by end date, if end is in a different month. And to compare months, use MONTH to take the month of a date.

    To get the column names as months, use DateName(Month, ). To make it consistent, use only the first 3 characters using LEFT.

    To turn rows into columns, use PIVOT.

    SELECT officerName, Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
    FROM (
        select LEFT(datename(month,tourStartDate),3) mon, officerName
        from tbl
        union all
        select LEFT(datename(month,tourEndDate),3) mon, officerName
        from tbl
        where month(tourStartDate) != month(tourEndDate)
    ) P
    PIVOT (COUNT(mon) for mon in (Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec)) PV
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table called employee with following fields Id | Name | PrimaryEmail1
i have table called as Support, which have a field named Name and contains
I have a table called TPM_TASKS which contain all tasks, as well as a
I have a table called 'survey_product' with the following structure: id int(11) order_id int(11)
I have table called page which represents every single page in my website. page_id
Hi I have table called Sold Products which stores buying information for product &
I'm dealing with (for me) huge SQL problem. I have table called timeshifts which
i have table called type which contains data family,individual i want in some pages
I have table called Reporting with following columns OutletId CampaignId ItemId Qty 10 1
I have table in my SQL Server database called OrderDetail which stores the order

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.