Une façon de le faire sans utiliser SQL dynamique consiste à utiliser l'instruction CASE
Mais c'est moche
SELECT EPV.EmployeeCode, case @RateOfEmployee when 'RateOfEmployee' then RateOfEmployee
when 'X' then X
..
end , case @RateOfEmployer when 'RateOfEmployer' then RateOfEmployer
when 'Y' then Y
..
end
FROM [HR_EmployeeProvisions] EPV
Vous devez vérifier toutes les colonnes dans CASE
déclaration.