-- ================================================ -- Template generated from Template Explorer using: -- Create Inline Function (New Menu).SQL -- -- Use the Specify Values for Template Parameters -- command (Ctrl-Shift-M) to fill in the parameter -- values below. -- -- This block of comments will not be included in -- the definition of the function. -- ================================================ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: -- Create date: -- Description: -- ============================================= CREATE FUNCTION PIRatio ( -- Add the parameters for the function here @att1 varchar(50) , @att2 varchar(50) ) RETURNS REAL AS BEGIN DECLARE @PIRatio REAL; DECLARE @PI INT; DECLARE @NonNull INT; -- Add the SELECT statement with parameter references here EXEC @PI = NumberOfPI @att1, @att2; EXEC @NonNull = NonNullAiAj @att1, @att2; SET @PIRatio = CAST(@PI AS REAL)/CAST(@NonNull AS REAL) RETURN @PIRatio; END; GO