Skip to content
Advertisement

Find the sum total of two CASE statements – (How to use a CASE expression or Lateral JOIN

I am looking to find the total profit made on an each way horse racing bet

I have created a view to show odds and returns for each part of the bet, but I would like to add another column (EachWayProfit) to find the total profit. I have tried to simply SUM the two case statements though receiving a Syntax error.

I include my code and output below,

This Returns:

enter image description here

I want to add the total returns from both the Win & Place Parts of the bet into a new column – EachWayProfit

How do I to structure this question?

Advertisement

Answer

If you want to compute the sum of both values on the same row, then you typically need to repeat the conditional expressions, so something like:

In SQL Server, a lateral join comes handy to avoid redondancy:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement