sql server语句怎么写判断表中的照片字段是否存在照片?
3个回答
2019-01-22 · 知道合伙人软件行家
关注
展开全部
判断字段是否有值,照片类型的,SQLSERVER的数据类型设为IMAGE,可以取出该字段并判断该字段是否为NULL
declare @imgValue Image;
select @imgValue=ImageField from table where ID=YourID
if(@imgValue is null)
--不存在照片
else
--有照片
declare @imgValue Image;
select @imgValue=ImageField from table where ID=YourID
if(@imgValue is null)
--不存在照片
else
--有照片
追问
您好,我想要sql语句,不要编程语言。
追答
这上面就是本身就是SQL
或者
select isnull(imgValue ,null) hasImageValue from table where rsID=yourID,这样取出来为null就表示没有值,否值 有图片
如果 你是新版本的SQLserver,支持IIF的话,可使用下面的语句
select iif(imgValue is null) hasImageVal from table where rsID=yourID
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询