snicolaus - 24.03.22 18:17
in ACCESS funtioniert dies problemlos
*****************************************
SELECT *.*, IIf
([Belegart]='Stornorechnung',-1
) AS x
FROM Tabelle
WHERE
(
(
(Tabelle.Belegart
)="Stornorechnung"
)
);
IN SQL-server hab ich folgendes eingegeben - und es funktioniert nicht
***********************************************
SELECT Belegart, iif
([Belegart]='storno', - 1
) AS Expr1
FROM dbo.KHKVKBelege
GROUP BY Belegart
Was ist falsch?