当前位置: 代码迷 >> Sql Server >> 不能比较或排序 text、ntext 和 image 数据类型,该如何解决
  详细解决方案

不能比较或排序 text、ntext 和 image 数据类型,该如何解决

热度:335   发布时间:2016-04-27 16:09:05.0
不能比较或排序 text、ntext 和 image 数据类型

下面是存储过程代码

create   procedure   myproc
@body   ntext
as

这里要判断用户给的body   参数是否是空的?   然后在执行存储过程
if(body <> ' ')
begin
    --   xxxxxxxxxxxxx
end


提示错误,怎么办?   用   is   null   好象也不正确



------解决方案--------------------
create procedure myproc
@body ntext
as

if(@body is not null)
begin
print '111 '
end
你使用变量的时候搞错了!!
  相关解决方案