Hi this is my first attempt at using CASE in a SQL statment. Basicly i want to total up the total of two colums [option_Price] and [Sub_option_value] and then multiply by [quantity]. Then add all the totals together into one figure.
However i dont know if i am to add or subtract the results of [option_Price] or [Sub_option_value] together this is dependent on if [item_value] value is a '-' or '+'
I get a syntax error in this statment point marked in red
Line 5: Incorrect syntax near '='. Can anyone help with this st
However i dont know if i am to add or subtract the results of [option_Price] or [Sub_option_value] together this is dependent on if [item_value] value is a '-' or '+'
I get a syntax error in this statment point marked in red
Line 5: Incorrect syntax near '='. Can anyone help with this st
Code:
DECLARE @BasketTotal int
SELECT @BasketTotal = SUM(
CASE [O].Line 5: Incorrect syntax near '='.
WHEN [O].Item_Value [COLOR=red]=[/color] '+'
THEN ([O].Option_Price + Isnull([SOI].Sub_Option_Value,0)) * [B][I].Quantity
WHEN [O].Item_Value = '-'
THEN ([O].Option_Price - Isnull([SOI].Sub_Option_Value,0)) * [B][I].Quantity
WHEN [O].Item_Value Is null
THEN ([O].Option_Price * [B][I].Quantity
END )
FROM
[BasketItem] AS [B][I]
LEFT OUTER JOIN
[BasketItem_SubOption] AS [BI_SO]
ON
[B][I].[BasketItemID] = [BI_SO].[BasketItemID]
JOIN
[tblOptions] AS [O]
ON
[B][I].[OptionID] = [O].[Option_ID]
LEFT OUTER JOIN
[tblSub_Option_Items] AS [SOI]
ON
[BI_SO].[Sub_Option_Item_ID] = [SOI].[Sub_Option_Item_ID]
LEFT OUTER JOIN
[Offer] AS [OC]
ON
[B][I].[OfferID] = [OC].[OfferID]
WHERE
[B][I].[CustomerID] = '1262427'
Print @BasketTotal