asp if判断sql server字段值为空
我用asp做了一个网站,用sqlserver数据库建了一个man的表,man表中有id,name,sex,age,address,email等字段id已设为了自动加1,n...
我用asp 做了一个网站,用sql server数据库 建了一个man的表,man表中有id,name,sex,age,address,email等字段 id已设为了自动加1,name,sex,age,address,email 等字段都允许为空,我在man表中插入了一条记录,王二,男,20,广州没有写入email,我看到server sql man表中email 为 我在输出这个值的时候想做个判断,如果 email值为空的时候,就执行A 不有空的时候执行B if rs("email").... then a end if if rs("email")...then b end if 我的问题是 怎么写这个 if 语句 我以是用access 的 用下面的 if rs("email")="" then a end if if rs("email")<>"" then b end if 就行了,但在server 好像不行 用 if rs("email")=null then a end if 好像也不行 请问高手这个 判断字段是否为空的 if 语句怎么写啊 谢谢!
展开
1个回答
2013-09-25
展开全部
if not(isnull(rs("email"))) then a end if if isnull(rs("email")) then b end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询