把一堆东西放在一个文件中,需要时直接写这个文件名,不必再重复写这些东西,这个过程叫存储过程:
比如:
create proc proc_studentScore1
as
begin
select * from studentScore inner join stuClass on stuClass = claID
inner join studentsubject on stusubject = subID
end
把上面写好后放好.
需要时,执行下面命令就可以了
exec proc_studentScore1--执行
阅读(511) | 评论(0) | 转发(0) |