gpt4 book ai didi

mysql - 为什么我的 JOIN 显示双重结果?

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

这就是我的查询的样子,但它产生了双重结果。我是 SQL 的新手。

SELECT * FROM tbl_projects p, tbl_issues i WHERE p.admin_id = 3 

最佳答案

您正在以旧方式加入,没有加入条件,所以您得到笛卡尔积。请使用明确的 join 语法:

SELECT   * -- It is recommended to explicitly select the attributes you need
FROM tbl_projects p
JOIN tbl_issues i -- I assumed inner join
ON p.id = i.project_id -- You'll have to figure out the conditions yourself
WHERE p.admin_id = 3

关于mysql - 为什么我的 JOIN 显示双重结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36795363/

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