标题:[求助]SQL存储过程莫名报错,求助
只看楼主
yutaozj
Rank: 1
等 级:新手上路
威 望:1
帖 子:234
专家分:0
注 册:2006-2-17
 问题点数:0 回复次数:1 
[求助]SQL存储过程莫名报错,求助

--此存储过程实现删除用户的全部数据,包括竞价排名数据、信息发布数据等等

create procedure delUser(
@userEmail varchar(100),
@result varchar(10) output
)
as
set nocount on
if @userEmail=null or userEmail=''
begin
set @result='参数传递错误,用户帐号丢失.'
return
end
else
begin
delete from [User8517,jjKeyWords,leaveMes,message] where( user8517.userEmail=@userEmail and jjKeyWords.jjKeyEmail=@userEmail and leaveMes.lMesEmail=@userEmail and message.MesEmail=@userEmail)
set @result='删除成功!'
end

为什么提示列明userEmail无效啊
怎么改啊

搜索更多相关主题的帖子: SQL 
2007-09-18 16:26
yutaozj
Rank: 1
等 级:新手上路
威 望:1
帖 子:234
专家分:0
注 册:2006-2-17
得分:0 
已经发现问题,if @userEmail=null or userEmail=''这句写丢了小圆圈
打搅了

愿天下所有的人都喜欢编程~!@¥#%……&*(——+
2007-09-18 16:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-170954-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.095195 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved