求大神写一个SQL语句查询
展开全部
不知道你具体要什么,,大概写下,看是不是要这样的效果
select *
from article
where isnull(code,'')<>'' and web_id=1
select *
from article
where isnull(code,'')<>'' and web_id=1
追问
这个语句可以用
isnull(code,'')''
这个是啥意思啊,能给解释下不?
追答
他们用is not null是只针对值为null这样的情况,我一般喜欢用isnull(code,'')''这样的,因为这样可以同事排除字段内容为''和null这样的内容,因为我看你的code值里面有空白
展开全部
select * from article where code is not null and web_id=1;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from article a where a.web_id=1 and a.code is not null;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询