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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:29:08+00:00 2026-05-12T05:29:08+00:00

I have a table with dated records. I want a query that will show

  • 0

I have a table with dated records. I want a query that will show the number of records for each date.

Not hard, just a GROUP BY, right? Sure.

But I want to also show days where there were NO records. In this case, I would need to left join against a one-column table of consecutive dates, since a GROUP BY isn’t going to show a date that doesn’t exist.

Is there a better way of doing this? Or do I have to create a populate a table of dates just so I can join against it?

  • 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-12T05:29:09+00:00Added an answer on May 12, 2026 at 5:29 am

    It would probably be easiest to build out the dates table

    For example, if you wanted all dates from Jan 1, 2009 to today you could do the following:

    DECLARE @start  AS DATETIME,
            @end    AS DATETIME
    
    SELECT  @start = '2009-01-01',
            @end   = getdate()
    
    DECLARE @dates TABLE    (
                            dt  DATETIME
                            )
    
    WHILE (@start < @end)
    BEGIN
        INSERT  @dates
        SELECT  @start
    
        SELECT @start = DATEADD(day, 1, @start)
    END
    
    SELECT  *
    FROM    @dates
    

    @dates will have a record for each day from @start to @end.

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

Sidebar

Ask A Question

Stats

  • Questions 151k
  • Answers 151k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You could convert to HSV (using a formula from wikipedia… May 12, 2026 at 10:01 am
  • Editorial Team
    Editorial Team added an answer $c = array_diff($a, $b); $d = array_diff($b, $a); May 12, 2026 at 10:01 am
  • Editorial Team
    Editorial Team added an answer there is no OS Wide locale setting for Unix. There… May 12, 2026 at 10:01 am

Related Questions

I'm getting odd results from a MySQL SELECT query involving a LEFT JOIN ,
I have some questions about partitioning and strategy, how and when to use it.
I have a table USERS with the following fields date(datetime) email(varchar) provider(int) event(int) I
I have a large table with 1 million+ records. Unfortunately, the person who created
I have a MySQL db and inside it a table called ProductMaster with 6

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.