SQL Date Formulas - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T20:57:27Zhttp://stackoverflow.com/feeds/question/240341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240341/sql-date-formulas2SQL Date FormulasBilly Rogers2008-10-27T15:39:50Z2009-02-15T18:22:08Z
<p>I need a date formula in Oracle SQL or T-SQL that will return a date of the previous week (eg Last Monday's date).</p>
<p>I have reports with parameters that are run each week usually with parameter dates mon-friday or sunday-saturday of the previous week. I'd like to not have to type in the dates when i run the reports each week. </p>
<p>The data is in Oracle and I am using SQL Server 2005 Reporting Services (SSRS) for the reports.</p>
http://stackoverflow.com/questions/240341/sql-date-formulas/240368#2403683Answer by Tomalak for SQL Date FormulasTomalak2008-10-27T15:47:21Z2008-10-27T16:54:07Z<p>T-SQL:</p>
<pre><code>SELECT
DateColumn,
DateColumn - CASE DATEPART(dw, DateColumn)
WHEN 1 THEN 6
ELSE DATEPART(dw, DateColumn) - 2
END MondayOfDateColumn
FROM
TheTable
</code></pre>
<p>Do you need the time part to be "00:00:00", too?</p>
<p>If so, add this expression to the calculation:</p>
<pre><code>DATEADD(dd, 0, DATEDIFF(dd, 0, DateColumn)) - CASE DATEPART(dw, /* etc. etc. */
</code></pre>
http://stackoverflow.com/questions/240341/sql-date-formulas/240372#2403721Answer by StingyJack for SQL Date FormulasStingyJack2008-10-27T15:47:50Z2008-10-27T15:47:50Z<p>Check out the list of date functions in <a href="http://stackoverflow.com/questions/202243/custom-datetime-formatting-in-sql-server#202288">this post</a>. You want this one. </p>
<pre><code>SELECT (DATEADD(wk,DATEDIFF(wk,0,GETDATE()) -1 ,0))
</code></pre>
<p>They are almost always math and not string oriented so they will work faster than casing or casted operations</p>
http://stackoverflow.com/questions/240341/sql-date-formulas/240392#240392-1Answer by Tom H. for SQL Date FormulasTom H.2008-10-27T15:54:26Z2008-10-27T19:30:38Z<p>A T-SQL solution:</p>
<p>Assuming that SET DATEFIRST is at the default (Sunday = 7), last Monday's date:</p>
<pre><code>SELECT
DATEADD(dy, DATEPART(dw, GETDATE()) - 9, GETDATE())
</code></pre>
<p>The "-9' is to go back one week (-7) and then since Monday is 2 we are subtracting 2 more and adding the day of the week for the current day.</p>
http://stackoverflow.com/questions/240341/sql-date-formulas/240407#2404071Answer by David B for SQL Date FormulasDavid B2008-10-27T15:57:06Z2008-10-27T16:36:04Z<p>Here's my solution, tested against 8 days.</p>
<pre><code>SET DateFirst 7
DECLARE @Today datetime
SET @Today = '2008-10-22'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-23'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-24'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-25'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-26'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-27'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-28'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
SET @Today = '2008-10-29'
SELECT DateAdd(wk, DateDiff(wk, 0, DateAdd(dd, -1, @Today)) - 1, 0) as PreviousMonday, @Today as Today
</code></pre>
<p>Here's the trouble with Sunday:</p>
<pre><code>SELECT
DateDiff(wk, 0, '2008-10-25') as SatWeek, --5677
DateDiff(wk, 0, '2008-10-26') as SunWeek, --5688
DateDiff(wk, 0, '2008-10-27') as MonWeek --5688
SELECT
DatePart(dw, '2008-10-25') as SatPart, --7
DatePart(dw, '2008-10-26') as SunPart, --1
DatePart(dw, '2008-10-27') as MonPart, --2
convert(datetime,'2008-10-25') - (DatePart(dw, '2008-10-25') - 2) as SatMonday,
--'2008-10-20'
convert(datetime,'2008-10-26') - (-1) as SunMonday,
--'2008-10-27'
convert(datetime,'2008-10-27') - (DatePart(dw, '2008-10-27') - 2) as MonMonday
--'2008-10-27'
</code></pre>
<p>Many of these solutions Provide the same answer for Sunday and Monday in the same week. The old Monday should not be resigned until another Monday has occurred.</p>
http://stackoverflow.com/questions/240341/sql-date-formulas/240542#2405420Answer by JosephStyons for SQL Date FormulasJosephStyons2008-10-27T16:38:34Z2008-10-27T18:53:27Z<p>In Oracle:</p>
<p><em>Edit: Made it a bit more concise</em></p>
<p><em>Edit: Leigh Riffel has posted a much better solution than mine.</em></p>
<pre><code>select
case when 2 = to_char(sysdate-1,'D') then sysdate - 1
when 2 = to_char(sysdate-2,'D') then sysdate - 2
when 2 = to_char(sysdate-3,'D') then sysdate - 3
when 2 = to_char(sysdate-4,'D') then sysdate - 4
when 2 = to_char(sysdate-5,'D') then sysdate - 5
when 2 = to_char(sysdate-6,'D') then sysdate - 6
when 2 = to_char(sysdate-7,'D') then sysdate - 7
end as last_monday
from dual
</code></pre>
http://stackoverflow.com/questions/240341/sql-date-formulas/240747#2407471Answer by Leigh Riffel for SQL Date FormulasLeigh Riffel2008-10-27T17:32:56Z2008-10-27T18:53:58Z<p>Here is an Oracle solution for Monday.</p>
<pre><code>select sysdate - 5 - to_number(to_char(sysdate,'D')) from dual
</code></pre>
<p>Here are examples that retrieve any particular day from the previous week.</p>
<pre><code>SELECT sysdate - 6 - to_number(to_char(sysdate,'D')) LastSunday FROM dual;
SELECT sysdate - 5 - to_number(to_char(sysdate,'D')) LastMonday FROM dual;
SELECT sysdate - 4 - to_number(to_char(sysdate,'D')) LastTuesday FROM dual;
SELECT sysdate - 3 - to_number(to_char(sysdate,'D')) LastWednesday FROM dual;
SELECT sysdate - 2 - to_number(to_char(sysdate,'D')) LastThursday FROM dual;
SELECT sysdate - 1 - to_number(to_char(sysdate,'D')) LastFriday FROM dual;
SELECT sysdate - 0 - to_number(to_char(sysdate,'D')) LastSaturday FROM dual;
</code></pre>
<p>If you need the time part to be 00:00:00 wrap the statment in TRUNC(...).</p>
http://stackoverflow.com/questions/240341/sql-date-formulas/240995#2409951Answer by Noah Yetter for SQL Date FormulasNoah Yetter2008-10-27T18:40:48Z2009-02-15T18:22:08Z<p>(Oracle)</p>
<p>trunc(sysdate,'IW') --gives this week's monday</p>
<p>trunc(sysdate,'IW')-7 --gives last week's monday</p>
<p>This assumes you consider monday to be the first day of the week, which is what 'IW' (ISO Week) signifies. If you consider sunday to be the first day of the week...</p>
<p>trunc(sysdate,'W')+1 --gives this week's monday, on sunday this will be in the future</p>
<p>trunc(sysdate,'W')+1-7 --gives last week's monday</p>