Viewing 15 posts - 946 through 960 (of 1,187 total)
James Goodwin (5/20/2008)
webrunner,
Change that to varchar(8) and it will work.
'20080520AB' cannot be converted to a date, but '20080520' can.
--
JimFive
Right, but my point...
May 20, 2008 at 3:15 pm
James Goodwin (5/20/2008)
What is occuring is an automatic type conversion. If I do this:
Declare @tmp datetime
set @tmp = '20080101'
select...
May 20, 2008 at 2:33 pm
bitbucket (5/20/2008)
May 20, 2008 at 8:45 am
Christopher Stobbs (5/20/2008)
I don't think it's a glitch either.Like most people are saying the VARCHAR(10) can only hold 10 so SQL is correct in truncating it!!!:D
SQL may be correct in...
May 20, 2008 at 8:40 am
Carla Wilson (5/20/2008)
If you tried that with...
May 20, 2008 at 8:22 am
I'd love to write more about SQL (or some other nonfiction categories, too) but I don't have anywhere near the talent or experience needed to write something new or authoritative....
May 9, 2008 at 7:39 am
jim.powers (5/7/2008)
The question does specifically request the results from SQL Server 2005.
Yes, it does.
What will be the result when the following query is executed on SQL Server 2005?
Also, and this...
May 7, 2008 at 7:18 am
I agree. I think this is a great question. I got it wrong, but it showed me I still have more to learn about NULLs.
Thanks,
webrunner
May 6, 2008 at 7:43 am
WayneS (5/2/2008)
The condition should not use both IN and OR operators.
use could use:
where DatePart(m, ) IN (1,3,4,5,7,8)
OR is not used, so since they BOTH...
May 2, 2008 at 7:29 am
Steve Jones - Editor (4/30/2008)
April 30, 2008 at 1:06 pm
Hi Steve,
I have the Sony Reader. The controls take a little getting used to, but the type is very readable and you can pick from 3 different type sizes.
The...
April 30, 2008 at 7:36 am
[font="Courier New"]select floor(13.890)[/font] returns [font="Courier New"]13[/font], but just for fun, here are the results for a couple of variations in SQL 2000 (one difference from SQL 2005 is shown):
[font="Courier New"]select...
April 25, 2008 at 7:29 am
Viewing 15 posts - 946 through 960 (of 1,187 total)