搜索
编程论坛
→
数据库技术
→
『 SQL Server论坛 』
→ 能不能解释一下这个意思
标题:
能不能解释一下这个意思
只看楼主
陈xxx
等 级:
新手上路
帖 子:1
专家分:0
注 册:2022-3-18
结帖率:
0
楼主
已结贴
√
问题点数:20 回复次数:1
能不能解释一下这个意思
if isnull(@storagecode,'')='1<>1'
begin
return
end
搜索更多相关主题的帖子:
return
begin
end
if
2022-03-18 12:31
mywisdom88
等 级:
版主
威 望:
190
帖 子:3125
专家分:8340
注 册:2015-3-25
第
2
楼
得分:20
if isnull(@storagecode,'')='1<>1'
begin
return
end
相当于
select @a1 = '1<>1'
select @a2 = isnull(@storagecode,'')
if @a2 = @a1
begin
return
end
然后呢
isnull(@storagecode,'')
就是,如果@storagecode 是NULL,也就是没传参数,那么 @a2 ='',否则 @a2 = @storagecode
2022-03-18 20:25
2
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-508585-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.115726 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved