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.
use pubs
go
declare @tableName varchar(50), @sql varchar(500)
select @tableName ='orders'
select @sql = 'select * from ' + @tableName
exec(@sql)
print @sql