.NET学习爱好者

热爱编程事业

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

方法一:create proc pub1

@table nvarchar(200),

@id int

as

exec('select * from ['+ @table+'] where id='+@id)

 

exec pub1 'admin','2'

方法二:

alter proc up_test @table varchar(500)

as

declare @str varchar(500)

set  @str = 'Select * from ' + @table

exec (@str)
posted on 2007-01-11 19:50  风景  阅读(151)  评论(0编辑  收藏  举报