Is there a way to select a database from a variable?

蹲街弑〆低调 提交于 2020-01-13 11:45:09

问题


Is there a way to select a database from a variable?

Declare @bob as varchar(50);
Set @bob = 'SweetDB';
GO
USE @bob

回答1:


Unfortunately, no.

Unless you can execute the rest of your batch as dynamic SQL.

Using execute to dynamically execute SQL will change the context for the scope of the execute statement, but will not leave a lasting effect on the scope you execute the execute statement from.

In other words, this:

DECLARE @db VARCHAR(100)
SET @db = 'SweetDB'
EXECUTE('use ' + @db)

Will not set the current database permanently, but if you altered the above code like this:

DECLARE @db VARCHAR(100)
SET @db = 'SweetDB'
EXECUTE('use ' + @db + ';select * from sysobjects')
select * from sysobjects

Then the result of those two queries will be different (assuming you're not in SweetDB already), since the first select, executed inside execute is executing in SweetDB, but the second isn't.




回答2:


declare @NewDB varchar(50)
set @NewDB = 'NewDB'
execute('use ' + @NewDB)



回答3:


#TempTables will presist across GOs

you can create the table in the first batch, insert/select data as necessary in that or any following batch.

here is some sample syntax:

CREATE TABLE #YourTableName
(
     col1   int         not null   primary key   identity(1,1)
    ,col2   varchar(10)
)


来源:https://stackoverflow.com/questions/937271/is-there-a-way-to-select-a-database-from-a-variable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!