直到今天,我对内部连接的想法是它将返回满足连接条件的表中存在的最小行数。
前任。如果表 A包含 4 行,表 B包含 7 行。如果满足加入条件,我期望 4 行可以是最大输出。
我刚刚写了一个 sp,我在其中创建了两个临时表并填充它们。然后我对它们进行了内部连接,但返回了更多行(在我的情况下,返回了 29 行,我期待 4 行)经过一番搜索,我找到了这个 链接
这证实了我可以发生,但我仍然想知道我有什么选择来限制返回的结果。
下面是我的存储过程。
ALTER PROCEDURE [dbo].[GetDDFDetailOnSiteCol]
@siteId int,
@colNum int
AS
BEGIN
SET NOCOUNT ON;
create Table #portDetail
(
ddfId int,
portDetail nvarchar(50),
siteId int
)
Insert into #portDetail SELECT ddf.id, ddf.portDetail, site.Site_ID from site
inner join ddf ON site.Site_ID = ddf.siteCodeID
where ddf.siteCodeID = @siteId and ddf.colNo= @colNum
order by colNo,blockNum,portRowNum,portColNum
create Table #portAllocationDetail
(
assigned_slot nvarchar(50),
siteId int
)
Insert into #portAllocationDetail
SELECT dbo.portList.assigned_slot, dbo.site.Site_ID
FROM dbo.portList INNER JOIN
dbo.site ON dbo.portList.siteCodeID = dbo.site.Site_ID
where dbo.site.Site_ID = @siteId
--select * from #portAllocationDetail
Select #portDetail.ddfId,#portDetail.portDetail,#portAllocationDetail.siteId,#portAllocationDetail.assigned_slot FROM #portDetail
INNER JOIN #portAllocationDetail
ON
#portDetail.siteId = #portAllocationDetail.siteId
END