How to multiply values of the columns based on the value in one column.

Example

   Col1   Col2   Col3   Col4
    10     10     10     casea (multiply col1 * col2)
    20     20     20     caseb (multiply col1 * col3) 
    30     30     30     casec (multiply col2 * col3) 

A query like:

select col1, col2, col3, col4, total

would return

    10,10,10,casea,100
    20,20,20,caseb,400
    30,30,30,casec,900

Of course performance is an important issue as always.

Thanks for participating.

link|improve this question

57% accept rate
1  
Hope - casec is col2*col3 ? – Oleg Dok Feb 5 at 13:56
feedback

1 Answer

up vote 4 down vote accepted
select
  Col1,
  Col2,
  Col3,
  Col4,
  CASE Col4 
    WHEN 'casea' then col1*col2
    WHEN 'caseb' then col1*col3
    WHEN 'casec' then col2*col3
  END AS Total
FROM YourTable
link|improve this answer
I did some research before posting this question, and learned that this is a correct solution that would perform poorly. – John Feb 5 at 14:03
1  
@John For performance use other features such as persisted computed columns and so on. Or review your schema and dataflow – Oleg Dok Feb 5 at 14:24
2  
@John - Why do you think this will perform poorly? Doubt it will make a perceptible difference and probably cheaper to calculate than extra IO of storing it. – Martin Smith Feb 5 at 14:32
feedback

Your Answer

 
or
required, but never shown

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