gpt4 book ai didi

Mysql对面2在哪里

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

我有包含数据的表格

Id    local_id    user_id
=========================
1 1 null
2 1 1
3 2 null
4 2 1
5 5 null

我需要查询 local_id=1 返回的行以及 user_id=null 的所有行示例 id 返回:1,2,3,5

最佳答案

您需要做的就是使用 WHERE 条件按 local_iduser_id 进行过滤

SELECT DISTINCT id
FROM table
WHERE local_id = 1 OR user_id IS NULL

关于Mysql对面2在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33978085/

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