gpt4 book ai didi

mysql - 连接查询的问题

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

我有两个表轨道列表和歌曲。我正在从以 sid 为主要歌曲的歌曲和以 sid 为外国的轨道列表中获取所有值。虽然使用此查询从歌曲中获取所有值是成功的。

SELECT t.sid as tsid, s.sid as ssid, s.name from song s LEFT JOIN tracklist t ON s.sid=t.sid;

但是如果我想从不在轨道列表中的歌曲中获取这些值,则此查询不会获取单行。

SELECT t.sid as tsid, s.sid as ssid, s.name from song s LEFT JOIN tracklist t ON s.sid=t.sid where t.sid= NULL;

最佳答案

而不是 =NULL,使用 IS NULL:

SELECT t.sid as tsid, s.sid as ssid, s.name from song s LEFT JOIN tracklist t ON s.sid=t.sid where t.sid IS NULL;

关于mysql - 连接查询的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7001041/

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