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.
Set NoCount on
Declare @Temp Table(PrjId Float, PrjName VarChar(255))
Insert Into @Temp Values(1, 'Project1')
Insert Into @Temp Values(2, 'Another Project')
Insert Into @Temp Values(3, 'Yet another project')
Select * from @Temp