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

  • Home
  • SEARCH
  • 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 6318035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T15:35:46+00:00 2026-05-24T15:35:46+00:00

I have a table with several ticket records in it. Each ticket is stored

  • 0

I have a table with several “ticket” records in it. Each ticket is stored by day (i.e. 2011-07-30 00:00:00.000) I would like to count the unique records in each month by year I have used the following sql statement

SELECT DISTINCT
   YEAR(TICKETDATE) as TICKETYEAR,
   MONTH(TICKETDATE) AS TICKETMONTH,
   COUNT(DISTINCT TICKETID) AS DAILYTICKETCOUNT
FROM
   NAT_JOBLINE
GROUP BY
   YEAR(TICKETDATE),
   MONTH(TICKETDATE)
ORDER BY
   YEAR(TICKETDATE),
   MONTH(TICKETDATE)

This does produce a count but it is wrong as it picks up the unique tickets for every day. I just want a unique count by 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-05-24T15:35:47+00:00Added an answer on May 24, 2026 at 3:35 pm

    Try combining Year and Month into one field, and grouping on that new field.
    You may have to cast them to varchar to ensure that they don’t simply get added together. Or.. you could multiple through the year…

    SELECT    
       (YEAR(TICKETDATE) * 100) + MONTH(TICKETDATE),
       count(*) AS DAILYTICKETCOUNT
    FROM    NAT_JOBLINE GROUP BY
     (YEAR(TICKETDATE) * 100) + MONTH(TICKETDATE)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table with several records. There is an id field. I would
I have a table with several hundred records, each one containing a datetime column.
I have a table in my ticketing system with 15,000 records, each containing an
I have several pages to do with several table on each page. I've got
my table have several records which has the same MemberID. i want to result
I have a table with several million rows. Each row represents a user session
I have product table - each one of them has several categories; each category
I have a table with several rows of data. Each row is it's own
I have a table (time_period) The table lists several time periods like so. unique_id
I have a table with several account fields like this: MAIN_ACCT GROUP_ACCT SUB_ACCT I

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.