标签:ar sql table har c user 存储 as
create PROC [dbo].CreateUserTable
( @name NVARCHAR(60) )
AS
DECLARE @a NVARCHAR(max)
SET
@a=‘create table ‘+@name +‘ ([id] [int] IDENTITY(1,1) NOT NULL‘
EXEC (@a)
exec CreateUserTable ‘zhou‘
标签:ar sql table har c user 存储 as
原文地址:http://www.cnblogs.com/tonghounb/p/3916439.html