gpt4 book ai didi

mysql - sql子查询中如何使用Union

转载 作者:太空宇宙 更新时间:2023-11-03 11:40:04 24 4
gpt4 key购买 nike

select user_id,name, login,lastseen from users where user_id 
in((select friend_id from connections where user_id=1 and connection=1)
union (select user_id from connections where friend_id=1 and connection=1))

我想做一些这样的工作,但这个查询显示错误。如果我在没有 backets 的情况下独立运行这个子查询,它工作正常。以及如何重写此查询以提高性能

最佳答案

使用 UNION 跳过 IN,改为执行 EXISTS:

select user_id, name, login, lastseen
from users u
where exists (select 1 from connections c
where c.connection = 1
and ((u.user_id = c.friend_id and c.user_id = 1) or
(c.user_id = u.user_id and c.friend_id = 1)))

关于mysql - sql子查询中如何使用Union,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42551934/

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