How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:33:19Z http://stackoverflow.com/feeds/question/592983 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/592983/how-do-i-include-empty-rows-in-a-single-group-by-daydatefield-sql-query 3 How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? Nathan 2009-02-26T23:39:53Z 2009-02-27T20:58:50Z <p>I'm using MS SQL Server but welcome comparitive solutions from other databases.</p> <p>This is the basic form of my query. It returns the number of calls per day from the 'incidentsm1' table:</p> <pre><code>SELECT COUNT(*) AS "Calls", MAX(open_time), open_day FROM ( SELECT incident_id, opened_by, open_time - (9.0/24) AS open_time, DATEPART(dd, (open_time-(9.0/24))) AS open_day FROM incidentsm1 WHERE DATEDIFF(DAY, open_time-(9.0/24), GETDATE())&lt; 7 ) inc1 GROUP BY open_day </code></pre> <p>This data is used to draw a bar graph, but if there were no calls on a given day of the week, there is no result row and thus no bar, and the user is like, "why does the graph only have six days and skip from Saturday to Monday?"</p> <p>Somehow I need to UNION ALL with a blank row from each day or something like that, but I can't figure it out.</p> <p>I am constrained to what I can do with one SQL statement and I have readonly access so I can't create a temporary table or anything.</p> http://stackoverflow.com/questions/592983/how-do-i-include-empty-rows-in-a-single-group-by-daydatefield-sql-query/593001#593001 0 Answer by Russ Cam for How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? Russ Cam 2009-02-26T23:44:31Z 2009-02-26T23:49:57Z <p>Can you create a table variable with the dates that you need and then <code>RIGHT JOIN</code> onto it? For example,</p> <pre><code>DECLARE @dateTable TABLE ([date] SMALLDATETIME) INSERT INTO @dateTable VALUES('26 FEB 2009') INSERT INTO @dateTable VALUES('27 FEB 2009') -- etc SELECT COUNT(*) AS "Calls", MAX(open_time), open_day FROM ( SELECT incident_id, opened_by, open_time - (9.0/24) AS open_time, DATEPART(dd, (open_time-(9.0/24))) AS open_day FROM incidentsm1 RIGHT JOIN @dateTable dates ON incidentsm1.open_day = dates.date WHERE DATEDIFF(DAY, open_time-(9.0/24), GETDATE())&lt; 7 ) inc1 GROUP BY open_day </code></pre> <p>The more ideal situation however, would be to have a table object with the dates in</p> http://stackoverflow.com/questions/592983/how-do-i-include-empty-rows-in-a-single-group-by-daydatefield-sql-query/593011#593011 0 Answer by boflynn for How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? boflynn 2009-02-26T23:48:43Z 2009-02-26T23:48:43Z <p>I would suggest the usage of a <a href="http://www.sqlservercentral.com/articles/Date%2BManipulation/65195/" rel="nofollow">date table</a>. With an existing date table in place, you can perform a RIGHT OUTER JOIN to the date table to bring in your missing days.</p> http://stackoverflow.com/questions/592983/how-do-i-include-empty-rows-in-a-single-group-by-daydatefield-sql-query/593216#593216 0 Answer by Jonathan Leffler for How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? Jonathan Leffler 2009-02-27T01:36:09Z 2009-02-27T01:36:09Z <p>Can you create the set of dates as part of your query? Something along the lines of:</p> <pre><code>SELECT COUNT(*) AS Calls, ... FROM incidentsm1 RIGHT OUTER JOIN (SELECT date_values FROM TABLE(('27 Feb 2009'), ('28 Feb 2009'), ('1 Mar 2009'), ('2 Mar 2009'), ('3 Mar 2009'), ('4 Mar 2009'), ('5 Mar 2009')) AS date_list ) ON ... </code></pre> <p>This is inspired by a sort of hybrid of Informix and DB2 notations and is pretty much guaranteed to be syntactically incorrect in both. Basically, is there a way in your DBMS of creating a literal table on the fly. One possibility - ugly but barely doable - would be to do a 7-way UNION of date literals selected from 'dual' or some table expression that guarantees one row (in Informix terms, <code>SELECT MDY(2,28,2009) FROM "informix".systables WHERE tabid = 1 UNION ...</code>).</p> http://stackoverflow.com/questions/592983/how-do-i-include-empty-rows-in-a-single-group-by-daydatefield-sql-query/593402#593402 4 Answer by Blorgbeard for How do I include empty rows in a single GROUP BY DAY(date_field) SQL query? Blorgbeard 2009-02-27T03:28:27Z 2009-02-27T20:58:50Z <p>How about something like this? </p> <pre><code>SELECT COUNT(incident_id) AS "Calls", MAX(open_time), days.open_day FROM ( select datepart(dd,dateadd(day,-6,getdate())) as open_day union select datepart(dd,dateadd(day,-5,getdate())) as open_day union select datepart(dd,dateadd(day,-4,getdate())) as open_day union select datepart(dd,dateadd(day,-3,getdate())) as open_day union select datepart(dd,dateadd(day,-2,getdate())) as open_day union select datepart(dd,dateadd(day,-1,getdate())) as open_day union select datepart(dd,dateadd(day, 0,getdate())) as open_day ) days left join ( SELECT incident_id, opened_by, open_time - (9.0/24) AS open_time, DATEPART(dd, (open_time-(9.0/24))) AS open_day FROM incidentsm1 WHERE DATEDIFF(DAY, open_time-(9.0/24), GETDATE()) &lt; 7 ) inc1 ON days.open_day = incidents.open_day GROUP BY days.open_day </code></pre> <p>I've only tested it on a simplified table schema, but I think it should work. You might need to tinker with the dateadd stuff..</p>