表中有一个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)。我只写成这样,求改正?
1、先创建一个简单的数据表。
2、插入数据,顺便复习插入数据了,最好多插几个,查询的时候更明显。
3、select后面的字段是等下查询结果所显示的,where就是限制的条件,根据where查询到对应的列。
4、如果字段里面有数字的话也是可以根据数字大小进行查询的。
5、加入and语句可以同时限制两个条件来查询。
6、用%来查询,百分号在字母前表示以什么字母开头的,这里就是以名字为d开头来查询数据,同理把%放在后面就是以d结尾的名字。
你是不是描述的有错误?怎么两次都是username不为空?
估计可以有好几个:
1、可以用union all
select * from table where 1=1 and (username is not null and instr(username , '李四') > 0)2、你写的这个好像or and的逻辑有问题,可以改改
理解错误的话请纠正
需求:当username字段中为空时,就是“select * from table;”当username不为空的时候,判断“李四”在username中吗,就是“select * from table where 1=1 and instr(username , '李四') > 0;”这两种情况是互斥的,用一个SQL能把结果查出来吗?
追答但是字段是一列值,有空或非空。
你说的为username空或非空是指传参吗?
对,Username字段,有的行为空,有的行不为空的。这时候,需要判断它是否为空,若为空,不用追加And条件。若不为空,添加个条件and instr(username , '李四') > 0。
想实现,若username字段为空的话,直接查询出数据就行。若username不为空,先判断这个用户名在不在username中,在的话就把数据取出,不在的话,不能取出数据。
估计一条语句出不来了,而且oracle的存储过程不支持直接select表,只能将各字段打印。
没有你的数据表,以scott用户下的emp表为例
declare输入参数是S或者空字符,结果分别是:
select * from table where 1=1 and instr(username, '李四') > 0 union select * from table where1=1 and users is null;
这样写的结果集是正确的,你的存储过程也是正确的,但是我想写在Mybatis的xml中,所以想优化一下,这样的话是做了两个查询,取并集。能否改成只查询一次,在where中通过类似条件语句(if-else)之类的,判断username是否为空后,拼接处一条语句,查询一次呢?
oracle里单纯的sql语句不支持if else。好像没什么太好的方法
本回答被网友采纳