SQL系列学习 存储过程&事物语法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL系列学习 存储过程&事物语法相关的知识,希望对你有一定的参考价值。

/*学习事物基本语法*/

/*增加课室名的唯一索引*/
ALTER table class add constraint uni_ClassName unique(name)

/*创建存储过程,其中增加教师,并增加课室*/
CREATE proc pro_AddClass
@className varchar(50),
@teacherName varchar(50)
as
begin
declare @teacherid int
select @teacherid=id from teacher a where [email protected]

begin tran
IF(@teacherid=0 or @teacherid is null)
begin
insert into teacher(name) VALUES(@teachername)
select @teacherid=IDENT_CURRENT(‘teacher‘)
end

insert into class(teacherid,name) VALUES(@teacherid,@classname)

IF @@error<>0
begin
rollback tran
end
else
commit tran
end


/*执行存储过程,查看结果*/
exec pro_AddClass ‘Soft‘,‘Teacher Li‘

技术分享


exec pro_AddClass ‘Math‘,‘Teacher Ann‘

技术分享

 

 

主要还是记录自己学习的过程,这些基础的知识相信园内已经有很多分享,参考了各位的资料,再作为自学的记录而已,如有差错,请指正

以上是关于SQL系列学习 存储过程&事物语法的主要内容,如果未能解决你的问题,请参考以下文章

PL/SQL程序设计—— 存储函数&存储过程

视图触发器事物存储过程函数流程控制

mysql之视图,触发器,存储过程,事物,函数

MySQL基础入门学习13存储过程

第五章 存储过程&触发器

SQL的存储过程 语法格式是啥?