我有两个功能:
fn_get_AB_associations(Date from, Date to, Int AentityId)
使用这些字段获取结果集:
datefrom | AentityId | BentityId
和
fn_get_BC_associations(Date from, Date to, Int BentityId)
使用这些字段获取结果集:
datefrom | BentityId | CentityId
我需要在日期范围内选择与 A 实体关联的所有 C 实体。
我试图做类似的事情:
select DISTINCT T1.BentityId from dbo.fn_get_AB_associations('2013-04-01', '2013-04-15', 'PF') T1
INNER JOIN fn_get_BC_associations('2013-04-01', '2013-04-15', T1.BentityId) T2
ON T1.BentityId = T2.BentityId
但我显然得到了这个错误:The multi-part identifier "T1.BentityId" could not be bound.
那么......有没有办法加入这两个结果集,或者我必须为第一个函数的结果循环并为每个函数调用第二个函数?