其中BEGIN里面的SELECT是干什么的
BEGIN
SELECT @MobileFAX_STATUS,@MobileFAX_PROMPT
是不是要输出的数据呢 还是选择条件
select不都是这样用的吗
select * from 表明
一个简单的例子
create proc student_ps
@empid char(20),
as
begin
select *from student where empid=@empid
end
go
--查询某个工号的信息 exec student_ps 'a1111'