I create the following stored procedure to calculate the percentage ,it works fine but i always can't get the exact result
for example 98.000 instead of 98.947
CREATE PROCEDURE sp_finger_calc_percent
AS
DECLARE @no_action decimal(18,4);
DECLARE @yes_action decimal(18,4);
SELECT @no_action = COUNT(*)
FROM Action INNER JOIN
Employee ON Action.b_num = Employee.b_num INNER JOIN
Department ON Employee.dep_id = Department.dep_id
WHERE (Department.dep_id = 50) AND (Action.action = 0);
SELECT @yes_action= COUNT(*)
FROM Action INNER JOIN
Employee ON Action.b_num = Employee.b_num INNER JOIN
Department ON Employee.dep_id = Department.dep_id
WHERE (Department.dep_id = 50) AND (Action.action = 1);
If(@no_action = 0.00)
return 100.00
Else return cast( (100.00 *(@yes_action /@no_action ) )as decimal(18,4))
;
DECLARE @return_status decimal(18,4);
EXEC @return_status = sp_finger_calc_percent
select @return_status;
return cast( (100.00 *(@yes_action /@no_action ) )as decimal(18,4))correct, or should it bereturn cast( (100.00 *(@yes_action / (@no_action + @yes_action)) )as decimal(18,4))? – Terje D. Nov 20 '12 at 16:57select @yes_action = SUM(Action.action), @no_action = SUM(case Action.action when 0 then 1 end) from ...– Alex K. Nov 20 '12 at 17:02