SQL Server存储过程创建和修改
Posted Debugs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server存储过程创建和修改相关的知识,希望对你有一定的参考价值。
create proc Get_Data
(
@Del_ID varchar(36)
)
as
select * from Depts where [email protected]_ID
select * from Depts
create procedure proc_Insert_Data
@DealerID varchar(36)
as
begin
declare @count int
select @count=(select COUNT(*) from Depts where [email protected])
if(@count>0)
begin
delete from Depts where [email protected]
insert into Depts(DeptName) values(@DealerID)
end
else
begin
insert into Depts(DeptName) values(@DealerID)
end
end
以上是关于SQL Server存储过程创建和修改的主要内容,如果未能解决你的问题,请参考以下文章