declare @int int,@sql char(111)
set @int =1
set @sql ='select top '+ cast( @int as varchar(10))  + '  * from EnterpriseRegister
'
 exec(@sql)