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.
SELECT db_name(), 1
DECLARE @db sysname
SET @db = 'northwind'
EXEC('USE ' + @db + ' SELECT db_name(), 2')
SELECT db_name(), 3
SELECT db_name(), 1
DECLARE @db sysname
SET @db = 'northwind'
EXEC('USE ' + @db + ' SELECT * from categories')
SELECT db_name(), 3