SQL Server mengatur nama kolom sebagai variabel

declare @a as varchar;
set @a='TEST'
exec ('select ' + @a + ' from x')
islam sissaoui