gpt4 book ai didi

sql - PostgreSQL 通配符 LIKE 用于子查询返回的任何单词列表

转载 作者:行者123 更新时间:2023-11-29 12:03:47 33 4
gpt4 key购买 nike

这很像 PostgreSQL wildcard LIKE for any of a list of words ,除了不想匹配静态单词列表,我想匹配子查询返回的单词列表。

像这样:

SELECT *
FROM people
WHERE name ~* (SELECT concat(last_name, ', ', first_name)
FROM other_people) + wildcard in this direction

最佳答案

select *
from people
where name like any (
select concat(last_name, ', ', first_name, '%')
from other_people
)

关于sql - PostgreSQL 通配符 LIKE 用于子查询返回的任何单词列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39274117/

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