Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table of data something like this.

date, amount, price
2009-10-12, 20, 15.43
2009-10-13, -10, 6.98

I need to write a stored procedure that will return these column as well as create a new column that indicates whether the amount was positive or negative. So the end result of the procedure would look something like this.

date, amount, price, result
2009-10-12, 20, 15.43, positive
2009-10-13, -10, 6.98, negative

How can this be done? This is a sql 2008 ent db.

share|improve this question

1 Answer

up vote 6 down vote accepted
select  date, 
        amount, 
        price, 
        case when amount > 0 then 'positive' 
             when amount < 0 then 'negative' 
        end as positive_or_negative
from #table
share|improve this answer
+1: Added missing single quote at the end of negative – OMG Ponies Feb 2 '10 at 20:48
+1: No sense having two of the same answer. – ChaosPandion Feb 2 '10 at 20:48
Thanks, changed it when I reformatted. :) – ryanulit Feb 2 '10 at 20:49
+1 for trapping "zero" (even as NULL output) – gbn Feb 2 '10 at 20:49
yep, that will do the job. Thanks guys – nelsonwebs Feb 2 '10 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.