create table xsjbxx
(no varchar(20) not null primary key,name varchar(50),sex char(2),age smallint,dept varchar(50)
我创建了这样一张学生信息表,我要创建一个输出年龄和专业的过程,输入参数为姓名
--帮你写好了 不明白可以随时问我 希望采纳
--如果你是输出参数就是我这种,如果你只是查此祥敬宴衫询的话就是楼森慎下的
create proc usp_xsjbxx
@name varchar(50),
@age smallint output,
@dept varchar(50) output
as
begin
select @age=age from xsjbxx where name =@name
select @dept =dept from xsjbxx where name =@name
end
create proc 答谨up_Test
槐举祥 铅搏@name varchar(50)
as
select age,dept
from xsjbxx
where name=@name