前面我们学了检索一个表中的一列或几列,如果我们的目标再具体一点,只检索一列中其中的一条,那就要写一个参数(即限定词)。它的一般写法叫形参,具体的内容叫实参。
create proc proc_studentScore2 @id int--(@id int为形参)
as
begin
select * from studentScore inner join stuClasss on stuClass = claID
inner join studentSubject on stuSubject = subID where stuID = @id
end
运行语句:
exec proc_studentScore2 1(1为实参)--只查第一条
阅读(522) | 评论(0) | 转发(0) |