Java教程

SQL笔记05

本文主要是介绍SQL笔记05,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

存储过程

use stuinfo
select * from sc where sno='2020005'

create proc p1
as
begin
	select * from sc where sno='2020005'
end
--执行
exec p1

--修改
alter proc p1 @sno varchar(13),@cno varchar(13)
as
begin
	select sc.*,cou.ccredit from sc,cou where sno=@sno and sc.cno=@cno and sc.cno=cou.cno
end

exec p1 '2020004','20203'
--删除
drop proc p1
这篇关于SQL笔记05的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!