create table t1(
c1 int)

insert t1 select 1
insert t1 select 2
insert t1 select 5
insert t1 select 7
go
declare @x varchar(8000)
set @x=''
select @x=@x+ltrim(str(c1))+ ' & ' from t1
order by c1 desc
print @x