oracle SQL查询中,如何在where中用条件语句,判断不同情况,追加不同的And条件? 30
表中有一个username字段(varchar),存储着几个用户名(tom,jack,张三),但也可能为空。如何判断一个用户名李四,当username字段不为空时,追加一...
表中有一个username字段(varchar),存储着几个用户名(tom,jack,张三),但也可能为空。如何判断一个用户名李四,当username字段不为空时,追加一个and条件“and instr(username, '李四') > 0“,来判断username中是否有李四这个字符串。当username不为空时,不追加任何条件。select * from table where 1=1 and (username is not null and instr(username , '李四') > 0) or (username is null)。我只写成这样,求改正?
展开
2个回答
展开全部
你是不是描述的有错误?怎么两次都是username不为空?
估计可以有好几个:
1、可以用union all
select * from table where 1=1 and (username is not null and instr(username , '李四') > 0)
union all
select * from table where username is null
2、你写的这个好像or and的逻辑有问题,可以改改
select * from table where 1=1
and ((username is not null and instr(username , '李四') > 0) or (username is null))
理解错误的话请纠正
更多追问追答
追问
需求:当username字段中为空时,就是“select * from table;”当username不为空的时候,判断“李四”在username中吗,就是“select * from table where 1=1 and instr(username , '李四') > 0;”这两种情况是互斥的,用一个SQL能把结果查出来吗?
追答
但是字段是一列值,有空或非空。
你说的为username空或非空是指传参吗?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询