简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

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

来源:易贤网   阅读:718 次  日期:2014-11-03 11:52:16

温馨提示:易贤网小编为您整理了“使用 SQL Server 添加删除修改查询储存过程”,方便广大网友查阅!

--添加

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

更多信息请查看IT技术专栏

更多信息请查看数据库
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:高效的SQLSERVER分页查询
下一篇:给sqlserver中的表创建索引
易贤网手机网站地址:使用 SQL Server 添加删除修改查询储存过程
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!