Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Declare @Temp Table(Data VarChar(10))
Insert Into @Temp Values('E01')
Insert Into @Temp Values('E02')
Insert Into @Temp Values('E03')
Declare @Output VarChar(1000)
Select @Output = Coalesce(@Output + ',', '') + Data
From @Temp
Select @Output