gpt4 book ai didi

mysql - 如何在Mysql中检查不等于?

转载 作者:行者123 更新时间:2023-11-29 02:07:19 24 4
gpt4 key购买 nike

我有两个表。一个表包含值
+----------+
用户
----------+
一个

C
D

F
+------------+
在另一张 table 上我有
+--------+
活跃
+--------+
C
D
G


`+--------+

从这两个表中,我只需要获取那些不在事件中的用户。为此,预期结果是
+------+
结果
+------+
一个


F
+------+

最佳答案

Select * from users u 
where not exists (
select 1 from active a where u.Field = a.Field
)

关于mysql - 如何在Mysql中检查不等于?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3784895/

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