gpt4 book ai didi

sql - LIKE 条件中的多个字符串 - Presto SQL

转载 作者:行者123 更新时间:2023-12-04 15:58:12 27 4
gpt4 key购买 nike

我想使用 LIKE 查询表中的列条件,这工作正常 -

select * from my_table where my_column LIKE '%hello%';
但是,如何在我的 LIKE 中使用多个字符串查询此列健康)状况?寻找类似的东西-
select * from my_table where my_column LIKE ['%hello%'|'example%'|'%random%'|'%demo'];

最佳答案

使用 regexp_like() :

select *
from my_table
where regexp_like(my_column, 'hello|example|random|demo');

关于sql - LIKE 条件中的多个字符串 - Presto SQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64780028/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com