Days Unavailable - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T06:15:18Z http://stackoverflow.com/feeds/question/377058 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/377058/days-unavailable 2 Days Unavailable Kishork 2008-12-18T06:35:45Z 2008-12-18T07:38:43Z <p>I need a simple SQL to accomplish the below:</p> <p>Problem:</p> <p>When a petrol bunk runs out of fuel, the admin makes note of the DateTime (RunOutDate) when it ran out of fuel and notes also the DateTime (ResupplyDate) when the fuel supply was back on.</p> <p>I need to create a report on how many <em>days</em> the bunk ran out of fuel.</p> <p>eg.</p> <p>1/1/1 10:10 to 1/1/1 10:50 should be counted as 1 </p> <p>1/1/1 10:10 to 2/1/1 07:20 should be counted as 2 </p> <p>1/1/1 23:55 to 2/1/1 00:10 should be counted as 2 </p> <p>I can not bank using hours using DateDiff as 24 hours could have spanned across 2 days.</p> <p>TIA</p> http://stackoverflow.com/questions/377058/days-unavailable/377068#377068 4 Answer by gbn for Days Unavailable gbn 2008-12-18T06:48:08Z 2008-12-18T06:48:08Z <p>DATEDIFF using day, then add 1.</p> <p>DATEDIFF uses the midnight to count days so you'll get 0, 1, 1 for each example above. Then add 1.</p> <pre><code>DATEDIFF(day, '16 Dec 2008 10:10', '16 Dec 2008 10:50') + 1 </code></pre> http://stackoverflow.com/questions/377058/days-unavailable/377073#377073 7 Answer by Joel Spolsky for Days Unavailable Joel Spolsky 2008-12-18T06:51:20Z 2008-12-18T06:51:20Z <pre><code>DATEDIFF(d, RunOutDate, ResupplyDate) + 1 </code></pre> <p>Remember that DATEDIFF always counts the number of BOUNDARIES that you cross. For days (first argument d), it counts the number of times the clock passed midnight. So to count the number of days covered you just add 1.</p>