这个存储过程报错,怎么修改?
发布网友
发布时间:2023-11-08 17:34
我来回答
共2个回答
热心网友
时间:2023-11-20 11:55
where后面的条件要用and或or连接不能用逗号
返回值可以是个集合,也可以是一组,
可以把return改成select
热心网友
时间:2023-11-20 11:55
create procere dbo.Get_operator
@Czy_code varchar(10), --此处少个逗号
@Czy_password varchar(10)
as
declare Czy_name varchar(10)
declare Czy_in_station varchar(10)
begin transaction
select @Czy_name = name,@Czy_in_station = in_station from dbo.User where code = @Czy_code and password = --此处逗号应改为and
@Czy_password
commit
select @Czy_code,@Czy_name,@Czy_in_station --此处return 改为select
GO