gpt4 book ai didi

php - MySQL 使用 EXISTS 选择计数

转载 作者:行者123 更新时间:2023-11-29 14:49:28 27 4
gpt4 key购买 nike

我有 3 张 table 。

表1id,thing_id

表索引编号

表索引信息table_index_id、table1_id

table_index_info 包含 table_index 的历史记录。该历史记录可以引用table1,可能多次或0次。

我需要运行一个查询,返回 table1 中具有特定 thing_id 的所有行。它还需要计算 table_index 中有多少行至少有 1 个 table_index_info 链接到 table1。

这是我的查询:

SELECT table1.*,
(SELECT COUNT(i.id)
FROM table_index i
WHERE EXISTS (SELECT 0
FROM table_index_info h
WHERE h.table1_id = table1.id
AND h.table_index_id = i.id)
) AS indexCount

FROM table1
WHERE table1.thing_id= $thingId

这是最好/正确的方法吗?

最佳答案

在这种情况下,我会使用 JOIN 而不是 EXISTS。

SELECT table1.*,
( SELECT COUNT(i.id)
FROM table_index i
INNER JOIN table_index_info h ON h.table_index_id = i.id
WHERE h.table1_id = table1.id
) AS indexCount
FROM table1
WHERE table1.thing_id = $thingId

关于php - MySQL 使用 EXISTS 选择计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6104573/

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