我有两个表,我正在做一个LEFT JOIN
从第一个表中获取所有记录的表,无论第二个表是否有匹配项。
我发现有时NULL
会回到连接列。我放入了 where 子句来过滤掉NULL
连接列中的记录,但我仍然看到这些记录。
SQL
为了过滤掉NULL
连接列中有 a 的记录,我需要在下面进行什么更改?
select
folders.FolderId,
folders.lastUpdated,
folder.FolderName,
folder.FolderParentID
from dbo.xsdl_Folder folder
left join dbo.Folders folders
on folder.FolderID = folders.FolderID
where folder.FolderID is not null;