USE [FabApprovalSystem] GO /****** Object: StoredProcedure [dbo].[MRBLotExists] Script Date: 11/21/2024 11:29:05 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[MRBLotExists] -- Add the parameters for the stored procedure here @LotNumber VARCHAR(10), @MRBLotCount INT OUTPUT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; SELECT @MRBLotCount = COUNT(*) FROM MRBLot WHERE LotNumber = @LotNumber IF @MRBLotCount = 0 SELECT @MRBLotCount = COUNT(*) FROM MRBChildLotNotInMRB WHERE LotNumber = @LotNumber END GO