2

尝试在子查询 FROM 子句中使用来自外部查询的参数。

tbl1:
| id | val1 | str1 |
| 1  | 12   | sbc  |
| 2  | 22   | sds  |

tbl2:
| id | val1 | str1 |
| 1  | 1    | cp   |

尝试编写以下查询:

select * from
    tbl1 t, (select * from tbl2 where t.id = tbl2.id and tbl2.val1 = 1) tb12;

预期输出:

| id | val1 | str1 | id   | val1 | str1 |
| 1  | 12   | sbc  | 1    | 1    | cp   |
| 2  | 22   | sds  | null | null | null |

然而它失败并出现错误:

/* SQL Error (1054): Unknown column 't.id' in 'where clause' */

我在这里做错了什么?

4

3 回答 3

2

有什么理由不使用这样的普通旧左连接:

select * from tbl1 t1 left join tbl2 t2 on t1.id = t2.id;
于 2010-07-06T12:53:44.717 回答
2
SELECT  *
FROM    tbl1 t
LEFT JOIN
        tbl2 t2
ON      t2.id = t.id
        AND t2.val1 = 1
于 2010-07-06T14:19:08.887 回答
0
 SELECT * tbl1 UNION select * from tbl2;

将产生相同的结果

于 2012-05-25T06:55:28.633 回答