>데이터 베이스 >MySQL 튜토리얼 >使用 SQL Server 添加删除修改查询储存过程

使用 SQL Server 添加删除修改查询储存过程

WBOY
WBOY원래의
2016-06-07 16:21:541397검색

--添加 create procedure usp_add ( @table nvarchar(255), @values nvarchar(max)=null ) as declare @sql nvarchar(max) set @sql='insert into '+@table if @values is not null set @sql='insert into '+@table+' values('+@values+')' exec sp_execute

   --添加

  create procedure usp_add

  (

  @table nvarchar(255),

  @values nvarchar(max)=null

  )

  as

  declare @sql nvarchar(max)

  set @sql='insert into '+@table

  if @values is not null

  set @sql='insert into '+@table+' values('+@values+')'

  exec sp_executesql @sql

  select @@IDENTITY

  go

  exec usp_Add '金山股份' ,'''abc'',20,300'

  go

  --删除

  create procedure usp_delete

  (

  @table nvarchar(255),,

  @where nvarchar(max)=null

  )

  as

  declare @sql nvarchar(max)

  set @sql='delete '+@table

  if @where is not null

  set @sql+=' where '+@where

  exec sp_executesql @sql

  go

  exec usp_delete '金山股分','id=1'

  go

  --修改

  create procedure usp_update

  (

  @table nvarchar(255),

  @set nvarchar(max),

  @where nvarchar(max)=null

  )

  as

  declare @sql nvarchar(max)

  set @sql='update '+@table+' set '+@set

  if @where is not null

  set @sql+=' where '+@where

  exec sp_executesql @sql

  go

  exec usp_update '金山股份','StockName=''腾讯股分''','id=2'

  go

  --查找

  create procedure usp_select

  (

  @table nvarchar(255),

  @where nvarchar(max)=null

  )

  as

  declare @sql nvarchar(max)

  set @sql='select * from '+@table

  if @where is not null

  set @sql=@sql+' where '+@where

  exec sp_executesql @sql

  go

  exec usp_select 'Stock','id=1'

  go

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.