sql server字符串非空判断实现方法

前端之家收集整理的这篇文章主要介绍了sql server字符串非空判断实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="47924" class="copybut" id="copybut47924" onclick="doCopy('code47924')"> 代码如下:

<div class="codebody" id="code47924">
CREATE function getcolor
(@井号 varchar(50),@层位 varchar(50))
returns varchar(200)
as
begin
declare @sql varchar(2000);set @sql=''
--distinct
select @sql=@sql+ 颜色+',' from (
select distinct 颜色 from yourtablename where
井号=@井号 and 层位=@层位 and 颜色 is not null
) aa
set @sql=substring(@sql,1,len(@sql)-1)
return @sql
end
我发现set @sql=substring(@sql,len(@sql)-1)这句有的时候会报错,原因是@sql在用substring的时候,有时候会为空字符串 请问在函数中,如何在substring之前判断下@sql是否为空? if @sql is not null and len(@sql) >= 1
set @sql=substring(@sql,len(@sql)-1)
else
... <div class="codetitle"><a style="CURSOR: pointer" data="39638" class="copybut" id="copybut39638" onclick="doCopy('code39638')"> 代码如下:
<div class="codebody" id="code39638"> if(@sql is not null)
set @sql=substring(@sql,len(@sql)-1)
return @sql
<div class="codetitle"><a style="CURSOR: pointer" data="17612" class="copybut" id="copybut17612" onclick="doCopy('code17612')"> 代码如下:
<div class="codebody" id="code17612">
if isnull(@sql,'')<>''
set @sql=substring(@sql,len(@sql)-1)
"select from db where img is not null"这个是选择所有的img不为空的内容
"select
from db where img is null"这个是选择所有的img为空的内容 如果要让sql判断值为空时默认一个值则可以用这样用
SELECT top 1 isnull(Yu_Yse_Commodity_KD,0) FROM [Yu_Records]

原文链接:https://www.f2er.com/mssql/63686.html
为空判断判断判断字符串字符串字符串

猜你在找的MsSQL相关文章