gpt4 book ai didi

mysql - 将 WHERE 子句添加到 Left Join 的一个表中?

转载 作者:行者123 更新时间:2023-11-29 01:45:37 26 4
gpt4 key购买 nike

我加入 SitesHistory 并选择不在 History 中的行。

$data = mysql_query("
select * from Sites
left join History
on Sites.URL = History.URL
where History.URL is null
order by Karma
");

问题是我想将 WHERE UID = $uid 添加到表 History 中,所以我只连接具有所述 UID 的行。

我想做这样的事情:

    select * from Sites
left join History where UID = $uid
on Sites.URL = History.URL
where History.URL is null
order by Karma

这可能吗?我该怎么做?

最佳答案

您可以将其添加到 JOIN 子句中:

select * from Sites
left join History ON UID = $uid
AND Sites.URL = History.URL
where History.URL is null
order by Karma

WHERE 子句:

select * from Sites
left join History
AND Sites.URL = History.URL
where History.URL is null
and UID = $uid
order by Karma

注意:您应该使用适当的表名作为前缀。我会的,但你没有具体说明。

关于mysql - 将 WHERE 子句添加到 Left Join 的一个表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7642560/

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