डायनेमिक sql का उपयोग किए बिना ऐसा करने का एक तरीका CASE स्टेटमेंट का उपयोग कर रहा है
लेकिन यह बदसूरत है
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
आपको CASE
. में सभी कॉलम को चेक करना होगा बयान।