 |
| SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

November 27th, 2003, 12:19 PM
|
|
Authorized User
|
|
Join Date: Jun 2003
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Testing a date
Hi All,
in SQLServer 2000 as part of a Select statement I have:
(CONVERT(char(11), dbo.Submission.GatewayTimestamp, 103) > '13/05/2001')
in my Where clause.
The GatewayTimestamp column is of type datetime.
Why do I have returned records where the date is '24/04/2001' as well as Records > than my date specified?
|
|

November 27th, 2003, 01:08 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Your code will convert the date to a string. The string will look like this for today:
'27/11/2003'
As you can see, 27/ is larger than 13/ so you WHERE clause is matched and the record selected.
You may want to try 111 or 112 instead of 103. This will convert the data in a Japanese or ISO format. Both these formats have the Years first, followed by the months and days. (I wish the whole world would stich to that notation). This way, 2001/11/26 will be smaller than 2003/11/13
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|
|

November 27th, 2003, 01:13 PM
|
|
Authorized User
|
|
Join Date: Jun 2003
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Imar, You missed my point. I'm looking for dates greater than the 13/05/2001, but also get records returned that are less than that date. THe converse is also true (i.e. if I change '>' to '<'....looking for records less than, then it also returns records greater than). Only when I do '=' do I have returned the correct records.
|
|

November 27th, 2003, 01:20 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 132
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Actually, I think you missed Imar's point, i.e. that you are comparing text strings, not dates. Therefore, all your '<' and '>' comparisions are being done on the basis of alphanumeric ordering, not any variety of magnitude. The reason that it works when you use '=' is that you are looking for a string exactly equal to your criterion date. If you used '13 fred' as the criterion, you would get similar results to what you are getting now :)
HTH
Chris
There are two secrets to success in this world:
1. Never tell everything you know
|
|

November 27th, 2003, 01:28 PM
|
|
Authorized User
|
|
Join Date: Jun 2003
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have also tried:
(CONVERT(datetime, CAST(CONVERT(datetime, dbo.Submission.GatewayTimestamp, 103) AS varChar(11)), 103) > '13/05/2001')
But this just gives a date overflow error.
What sysntax should I be using, could someone give me an example please.
|
|

November 27th, 2003, 01:45 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 132
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Just out of interest, what happens if you just use
Code:
dbo.Submission.GatewayTimestamp > '13/05/2001'
Generally, I am able to get implicit conversions, without resorting to cast or convert. And Imar's point about using ISO date format is still a good idea.
There are two secrets to success in this world:
1. Never tell everything you know
|
|

November 27th, 2003, 01:51 PM
|
|
Authorized User
|
|
Join Date: Jun 2003
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
It doesn't work.
|
|

November 27th, 2003, 01:54 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 132
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
OK, change your date to '20010513' (ISO format) and see what happens.
There are two secrets to success in this world:
1. Never tell everything you know
|
|

November 27th, 2003, 02:01 PM
|
|
Authorized User
|
|
Join Date: Jun 2003
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
it's given me the result I would expect....Worked
|
|

November 27th, 2003, 02:08 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 132
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Cool. And now we've got that sorted, we can tell you the answer you wanted in the first place 
(103 being UK format dates)
Code:
dbo.Submission.GatewayTimestamp > convert(datetime,'13/05/2001',103)
Your real problem was that you were approaching things from the wrong end: why convert each the date in your datetime field to characters, when you can convert your criterion to a datetime once? If you'd come from that end, you would probably have found the answer to the convert puzzle yourself.:D
Chris
There are two secrets to success in this world:
1. Never tell everything you know
|
|
 |