If by server variables you mean some value that is specific to that server,e.g. server name then you can use
select cast(@@Servername as varchar(max)) + col1 as col0, * from Data
↧