人机表现性

公式: 人员表现性 *  机器表现性

代码
CREATE FUNCTION [dbo].[udf_PersonMachineExpressive] 
(
    
@PersonExpressive DECIMAL(18,6),
    
@MachineExpressive DECIMAL(18,6)
)
RETURNS DECIMAL(18,6
AS
BEGIN
    
DECLARE @ReturnValue DECIMAL(18,6)
    
    
SELECT @ReturnValue = (ISNULL(@PersonExpressive,0* ISNULL(@MachineExpressive,0))
    
RETURN @ReturnValue
END 
原文地址:https://www.cnblogs.com/insus/p/1932115.html