sql中创建存储过程根据参数查询并显示表中数据

2024-12-02 18:03:14
推荐回答(2个)
回答1:

创建一个存储过程 传学号,然后 存储过程里面 写一个select 按学号查询的语句就好了。
create porcedure 存储过程名
@学号 varchar(30)

as
begin
select * from student where 学号=@学号

end

回答2:

CREATE proc [存储过程名称]
@自定义字段 nvarchar(50) -- 根据类型自己选择
as
select * from 表名 where 表字段=@自定义字段
GO
调用直接存储过程名称 字端条件例如(pro_selectuserinfo 001)