为什么数据库SQL一直要输入参数值
1个回答
关注
展开全部
是不是 存储过程
因为存储过程中有一个参数没有赋值,所以exec存储过程的时候要赋值
如 创建一个存储过程
create proc mypro
@id int
as
select * from student where id=@id
执行一个存储过程
exex mypro 4 --表示select * from student where id=4
咨询记录 · 回答于2022-05-03
为什么数据库SQL一直要输入参数值
是不是 存储过程因为存储过程中有一个参数没有赋值,所以exec存储过程的时候要赋值如 创建一个存储过程create proc mypro@id intasselect * from student where id=@id执行一个存储过程exex mypro 4 --表示select * from student where id=4
select学生编号,姓名,成绩from学生选课成绩where成绩<80unionselect学生编号,姓名,成绩from90分以上学生情况
有没有中文标点符号