SQL Select 列出多个带有大小写的值
Posted
技术标签:
【中文标题】SQL Select 列出多个带有大小写的值【英文标题】:SQL Select List mulitple values with case then 【发布时间】:2020-08-10 18:19:06 【问题描述】:我有一个变量,我想根据该变量从选择命令中排除该值。如果我想排除 1 个字符串,它可以正常工作,但如果我在相同条件下排除多个字符串,它就不起作用。这是代码。当变量是 abc 和 EFG 时它工作正常,但对于 XYZ 我想排除 'abc' 和 'efg'
select table.column1
from table
where column1 not like
case
when variable = 'abc' THEN '%abc%'
when variable = 'EFG' THEN '%efg%'
when variable = 'XYZ' THEN '%abc%' and '%efg%'
else
'_'
END
我尝试使用 '%abc%' 和 '%efg%' 和 '%(abc|efg)%' 和 '%abc%' ||和 || '%efg%',但它们似乎都没有工作。
【问题讨论】:
你能举个例子,即样本表数据和预期数据,你不能使用和之后的THEN。 没有多值like
语法,所以我不确定如果 case
表达式可以返回多个值,它们不能返回多个值。
【参考方案1】:
我想你想要:
where (variable = 'abc' and column1 not like '%abc%') or
(variable = 'EFG' and column1 not like '%EFG%') or
(variable = 'XYZ' and column1 not like '%abc%' and column1 not like '%XYZ%') or
(variable not in ('abc', 'EFG', 'XYZ'))
【讨论】:
【参考方案2】:我认为您的问题的解决方案不是 case when 语句,而是 sample where 。我在livesql 中为此创建了脚本,并在下面分享:
create table tab(
id_1 number,
column_1 varchar2(20),
variable_1 varchar2(20));
insert into tab(id_1,column_1,variable_1) values(8,'13 efg iu','abc');
insert into tab(id_1,column_1,variable_1) values(7,'1 3','KDG');
insert into tab(id_1,column_1,variable_1) values(6,'_','KDG');
insert into tab(id_1,column_1,variable_1) values(5,'_','XYZ');
insert into tab(id_1,column_1,variable_1) values(4,'abc 3 8','XYZ');
insert into tab(id_1,column_1,variable_1) values(3,'efg SDK','EFG');
insert into tab(id_1,column_1,variable_1) values(2,'EFGSSDK','EFG');
insert into tab(id_1,column_1,variable_1) values(1,'12abc12','abc');
commit;
select tab.id_1, tab.column_1
from tab
where (variable_1 = 'abc' and column_1 not like '%abc%') or
(variable_1 = 'EFG' and column_1 not like '%efg%') or
(variable_1 = 'XYZ' and column_1 not like '%abc%' and column_1 not like '%efg%') or
(variable_1 not in ('abc', 'EFG', 'XYZ') and column_1 not like '_');
【讨论】:
以上是关于SQL Select 列出多个带有大小写的值的主要内容,如果未能解决你的问题,请参考以下文章