谁能教我一下 sql的存储过程怎么写 书写格式是什么?

如题所述

create proc ceshi
@参数 char(20),
@参数2
as
begin

end

go
--exec create ceshi '',''追问

其中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'

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答