Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fun with DateDiff 1

Status
Not open for further replies.

ptheriault

IS-IT--Management
Aug 28, 2006
2,699
US
Without running it.
What do you think this will return..

Code:
[COLOR=green]-- Prepare sample data
[/color][COLOR=blue]DECLARE[/color]    @Dates [COLOR=blue]TABLE[/color] (StartingDate [COLOR=#FF00FF]DATETIME[/color], EndingDate [COLOR=#FF00FF]DATETIME[/color])

[COLOR=blue]INSERT[/color]     @Dates
[COLOR=blue]SELECT[/color]     [COLOR=red]'20010101'[/color], [COLOR=red]'20070204'[/color] UNION ALL
[COLOR=blue]SELECT[/color]     [COLOR=red]'20071231'[/color], [COLOR=red]'20080101'[/color] UNION ALL
[COLOR=blue]SELECT[/color]     [COLOR=red]'20070318'[/color], [COLOR=red]'20080101'[/color]

[COLOR=green]-- Show the expected output
[/color]
[COLOR=blue]SELECT[/color]     StartingDate,
           EndingDate,
           [COLOR=#FF00FF]DATEDIFF[/color]([COLOR=#FF00FF]MONTH[/color], StartingDate, EndingDate) [COLOR=blue]AS[/color] [[COLOR=#FF00FF]Month[/color] [COLOR=#FF00FF]DatePart[/color]],
           [COLOR=#FF00FF]DATEDIFF[/color]([COLOR=#FF00FF]YEAR[/color], StartingDate, EndingDate) [COLOR=blue]AS[/color] [[COLOR=#FF00FF]Year[/color] [COLOR=#FF00FF]DatePart[/color]]
[COLOR=blue]FROM[/color]       @Dates
[COLOR=blue]ORDER[/color] [COLOR=blue]BY[/color]   StartingDate



- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
That is normal behaviour, check this out
Notice 1 day difference between the dates

Code:
SELECT DATEDIFF(YEAR, '20071231', '20080101') AS YEARDiff ,
DATEDIFF(QUARTER, '20071231', '20080101') AS QUARTERDiff,
DATEDIFF(MONTH, '20071231', '20080101') AS MONTHDiff,
DATEDIFF(DAY, '20071231', '20080101') AS DAYDiff

Denis The SQL Menace
--------------------
SQL Server Code,Tips and Tricks, Performance Tuning
Google Interview Questions





 
I knew you would get it. But in reality shouldn't your query return, 0, 0, 0, 1?

At least that is what you would think it should return.

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
to get the expected results should we write something like this?

SELECT CASE
WHEN DATEPART(day, '20071231') > DATEPART(day, '20080101') THEN DATEDIFF(month, '20071231', '20080101') - 1
ELSE DATEDIFF(month, '20071231', '20080101')
END as a


- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Paul,

The DateDiff function returns the number of transitions.

Ex: Day transisitons from 1 day to another at midnight.

Code:
[COLOR=blue]Select[/color] [COLOR=#FF00FF]DateDiff[/color]([COLOR=#FF00FF]Day[/color], [COLOR=red]'20070423 23:59:59'[/color], [COLOR=red]'20070424'[/color])

Similarly, when the month changes (even if it's only a second difference), DateDiff will return 1 (for month).

Code:
[COLOR=blue]Select[/color] [COLOR=#FF00FF]DateDiff[/color]([COLOR=#FF00FF]Month[/color], [COLOR=red]'20070331 23:59:59'[/color], [COLOR=red]'20070401'[/color])

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Paul, you need to add "Teaser" in your thread title, I almost didn't look and get teased.

[monkey][snake] <.
 
Ok. Here's another one... What is the output?

Code:
[COLOR=blue]Declare[/color] @D1 [COLOR=#FF00FF]DateTime[/color]
[COLOR=blue]Declare[/color] @D2 [COLOR=#FF00FF]DateTime[/color]

[COLOR=blue]Set[/color] @D1 = [COLOR=red]'10:20:15:30'[/color]
[COLOR=blue]Set[/color] @D2 = [COLOR=red]'10:20:15.30'[/color]

[COLOR=blue]Select[/color] [COLOR=red]'Dates Are Equal'[/color]
[COLOR=blue]Where[/color]  @D1 = @D2

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
I'm assuming

Dates Are Equal (cause it compares with the day, since no day was given in each example, they default to the same date)

[monkey][snake] <.
 
monksnake,

Your assumption is wrong. If you don't specify a day, Jan 1, 1900 will be used. Comparisons are down to the millisecond.



-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
I got caught by that a couple of months ago (through mis-typing)

Not equal - The first will be 10:20:15:030, whereas the second will (I think) 10:20:15:300, and if you had 15.03, that would be 15:030 and 15:003 would be 15:003 - or I have I got those backwards?

[vampire][bat]
 
If you use a colon to seperate the seconds from the milliseconds, SQL Server assumes the number is in thousands of a second.

Declare @D1 DateTime
Declare @D2 DateTime

Set @D1 = '10:20:15:300'
Set @D2 = '10:20:15.300'

Select 'Dates Are Equal'
Where @D1 = @D2

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top