LEFT JOIN :右侧显示 null
LEFT JOIN : display null for the right side
假设我们有 2 tables
TABLEA TABLEB
1 1 01/03/2022
2 2 01/01/2022
3
这个SQL声明:
select id
from tableA
left join tableB on tableA.id = tableB.id
显示:
1 1 01/03/2022
2 2 01/01/2022
3 NUll
不幸的是,当我在右侧添加限制时 table,行为不一样。
select id
from tableA
left join tableB on tableA.id = tableB.id
where tableB.date > '01/01/2022'
我想要这样的东西:
1 1 01/03/2022
2 NULL
3 NULL
但我明白了:
1 1 01/03/2022
就是这样。我没想到会出现这种行为。有人可以告诉查询应该是什么吗?
CREATE TABLE #TABLEA
(
ID tinyint
);
CREATE TABLE #TABLEB
(
ID tinyint
,Date date
);
INSERT INTO #TABLEA
VALUES(1),(2),(3)
INSERT INTO #TABLEB
VALUES(1,'2022-03-01'),(2,'2022-01-01'),(3,NULL)
SELECT
*
FROM
#TABLEA t1
LEFT JOIN #TABLEB t2 ON t2.ID= t1.ID
AND t2.Date > '2022-01-01'
DROP TABLE
#TABLEA
,#TABLEB;
当您添加 WHERE 子句时,您有效地将 LEFT JOIN 更改为 INNER JOIN。将条件放入 JOIN 谓词中可保持 LEFT JOIN 的预期效果。
假设我们有 2 tables
TABLEA TABLEB
1 1 01/03/2022
2 2 01/01/2022
3
这个SQL声明:
select id
from tableA
left join tableB on tableA.id = tableB.id
显示:
1 1 01/03/2022
2 2 01/01/2022
3 NUll
不幸的是,当我在右侧添加限制时 table,行为不一样。
select id
from tableA
left join tableB on tableA.id = tableB.id
where tableB.date > '01/01/2022'
我想要这样的东西:
1 1 01/03/2022
2 NULL
3 NULL
但我明白了:
1 1 01/03/2022
就是这样。我没想到会出现这种行为。有人可以告诉查询应该是什么吗?
CREATE TABLE #TABLEA
(
ID tinyint
);
CREATE TABLE #TABLEB
(
ID tinyint
,Date date
);
INSERT INTO #TABLEA
VALUES(1),(2),(3)
INSERT INTO #TABLEB
VALUES(1,'2022-03-01'),(2,'2022-01-01'),(3,NULL)
SELECT
*
FROM
#TABLEA t1
LEFT JOIN #TABLEB t2 ON t2.ID= t1.ID
AND t2.Date > '2022-01-01'
DROP TABLE
#TABLEA
,#TABLEB;
当您添加 WHERE 子句时,您有效地将 LEFT JOIN 更改为 INNER JOIN。将条件放入 JOIN 谓词中可保持 LEFT JOIN 的预期效果。