可以通过将子查询中的逻辑移动到连接谓词的WHERE子句中,或将子查询中的逻辑转换为联接运算符处理来解决。以下是一个示例代码:
原始查询:
SELECT *
FROM table1
JOIN (
SELECT *
FROM table2
WHERE value > 100
) t2 ON t2.id = table1.id
改写后的查询:
SELECT *
FROM table1
JOIN table2
t2 ON t2.id = table1.id
WHERE t2.value > 100
或者:
SELECT *
FROM table1
JOIN (
SELECT id
FROM table2
WHERE value > 100
) t2 ON t2.id = table1.id
可以转换为:
SELECT *
FROM table1
JOIN table2
t2 ON t2.id = table1.id AND t2.value > 100