33 lines
775 B
Transact-SQL
33 lines
775 B
Transact-SQL
USE [FabApprovalSystem]
|
|
GO
|
|
/****** Object: UserDefinedFunction [dbo].[fnGetLotCount_QDB] Script Date: 11/21/2024 11:31:55 AM ******/
|
|
SET
|
|
ANSI_NULLS ON
|
|
GO
|
|
SET
|
|
QUOTED_IDENTIFIER ON
|
|
GO
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date, ,>
|
|
-- Description: <Description, ,>
|
|
-- =============================================
|
|
CREATE FUNCTION [dbo].[fnGetLotCount_QDB] (
|
|
-- Add the parameters for the function here
|
|
@IssueID INT
|
|
) RETURNS FLOAT AS BEGIN DECLARE @QDBCount INT -- Declare the return variable here
|
|
SET
|
|
@QDBCount = 0
|
|
SET
|
|
@QDBCount = (
|
|
SELECT
|
|
COUNT(*)
|
|
FROM
|
|
Lot L
|
|
WHERE
|
|
L.IssueID = @IssueID
|
|
AND L.Location = 'QDB'
|
|
) -- Return the result of the function
|
|
RETURN @QDBCount
|
|
END
|
|
GO |