どうすればこの問題を解決できますか?2条件でIF選択を使用できません
私のコード:
if (exists (select OperationDocumentReportExamCode from OperationDocumentReportExam where OperationDocumentReportExamCode = @CODE) AND @OVERRIDE IS '0')
Begin
Select 0 as Result
End
どうすればこの問題を解決できますか?2条件でIF選択を使用できません
私のコード:
if (exists (select OperationDocumentReportExamCode from OperationDocumentReportExam where OperationDocumentReportExamCode = @CODE) AND @OVERRIDE IS '0')
Begin
Select 0 as Result
End
IF (@OVERRIDE = 0
AND EXISTS (SELECT 1
FROM operationdocumentreportexam
WHERE operationdocumentreportexamcode = @CODE))
BEGIN
SELECT 0 [Result]
END
は、ほんの少しあなたのクエリを変更:
if exists (select OperationDocumentReportExamCode from OperationDocumentReportExam where OperationDocumentReportExamCode = @CODE) AND @OVERRIDE = '0'
Begin
Select 0 as Result
End
これは私が答えると考えたものです。アップ投票! – Aruna