Hej, jag kan banne mig inte komma på syntaxen- hur skriver man? Hej!if sats i sql
select
if (freighttypeid = 1) then
countryse +' *'+ as countryse
else
countryse
end if
, paymenttype, o.countryid, o.paymenttypeid, sum(dbo.ShopOrderCalcFreight(orderid,
buydate, 0, 0)) as fraktkostnad, count(1) as antalorder
from shoporder o, shop......
Sv: if sats i sql
Det är CASE du är ute efter i detta fall!
CASE when freighttypeid=1 then
countryse +' *'+ as countryse
ELSE
countryse
END