dbTalk Databases Forums  

SQL Server 2005 - > = 0 is not the same as > 0?

comp.databases.ms-sqlserver comp.databases.ms-sqlserver


Discuss SQL Server 2005 - > = 0 is not the same as > 0? in the comp.databases.ms-sqlserver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Hermes
 
Posts: n/a

Default SQL Server 2005 - > = 0 is not the same as > 0? - 05-17-2007 , 11:25 AM






I have a statement in my code;
Sum(CASE WHEN Rcv > 0 and Rcv < 100 THEN Rcv ELSE 0 END) as D100

It gives me a different number if I just add an "=" sign regarding the
0;
Sum(CASE WHEN Rcv > = 0 and Rcv < 100 THEN Rcv ELSE 0 END) as D100

Does anyone know why this would happen?


Reply With Quote
  #2  
Old   
David Portas
 
Posts: n/a

Default Re: SQL Server 2005 - > = 0 is not the same as > 0? - 05-17-2007 , 01:37 PM






On 17 May, 17:25, Hermes <manning... (AT) gmail (DOT) com> wrote:
Quote:
I have a statement in my code;
Sum(CASE WHEN Rcv > 0 and Rcv < 100 THEN Rcv ELSE 0 END) as D100

It gives me a different number if I just add an "=" sign regarding the
0;
Sum(CASE WHEN Rcv > = 0 and Rcv < 100 THEN Rcv ELSE 0 END) as D100

Does anyone know why this would happen?
Can you post some code to reproduce the problem: a CREATE TABLE
statement and one or two INSERT statements to create some sample data.

--
David Portas, SQL Server MVP

Whenever possible please post enough code to reproduce your problem.
Including CREATE TABLE and INSERT statements usually helps.
State what version of SQL Server you are using and specify the content
of any error messages.

SQL Server Books Online:
http://msdn2.microsoft.com/library/m...S,SQL.90).aspx
--



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.