Một cách để thực hiện việc này mà không cần sử dụng sql động là sử dụng câu lệnh CASE
Nhưng điều này thật xấu xa
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
Bạn phải kiểm tra tất cả các cột trong CASE
tuyên bố.