我有以下条件 sql 语句,它有效.. 但我在 if 部分有一个空语句......我想否定它,以便我可以使用 if 部分的逻辑
IF @WorkPrescribed = 1 and (@DefectNo1 = @WorkPrescribedDefectNo or @DefectNo2 = @WorkPrescribedDefectNo or @DefectNo3 = @WorkPrescribedDefectNo or @DefectNo4 = @WorkPrescribedDefectNo)
BEGIN
-- I don't want this at all.. only reason I have this is so I can have the else condition
END
else
BEGIN
--My current logic is all here
END
所以我只想知道如何否定我所拥有的,所以我可以只用 If 做所有事情,而不是使用 else
谢谢