将值插入动态表的存储过程

2021-09-10 00:00:00 tsql sql-server

我想知道是否可以创建一个将值插入动态表的存储过程.

I was wondering if I can make a stored procedure that insert values into dynamic table.

我试过了

create procedure asd
(@table varchar(10), @id int)
as
begin
    insert into @table values (@id)
end

同时将 @table 定义为表变量

also defining @table as table var

感谢您的帮助!

推荐答案

这可能对你有用.

CREATE PROCEDURE asd
(@table nvarchar(10), @id int)
AS
BEGIN
    DECLARE @sql nvarchar(max)
    SET @sql = 'INSERT INTO ' + @table + ' (id) VALUES (' + CAST(@id AS nvarchar(max)) + ')'
    EXEC sp_executesql @sql
END

在此处查看更多信息:http://msdn.microsoft.com/de-de/library/ms188001.aspx

相关文章