Is it possible to execute a store procedure from with in a query? Example of what I would like to do:
select emp_id, last_name, first_name,
(exec sp_Get_Overall_Incentive_Score @emp_id = em.emp_id) as score
from employee_master as em
where term = 0
Thanks in advance for the help,
Dan
select emp_id, last_name, first_name,
(exec sp_Get_Overall_Incentive_Score @emp_id = em.emp_id) as score
from employee_master as em
where term = 0
Thanks in advance for the help,
Dan