在这里,我在left join中也使用了相同的文档:
select A.a,A.b,C.c
from Inventory A left join
(select B.a as id,B.a*100 as c
from Inventory B
where condition1 and condition2
) as C
on C.id
on A.a
在上述用例中,如果没有左连接,我如何实现这一点?
在这里,我在left join中也使用了相同的文档:
select A.a,A.b,C.c
from Inventory A left join
(select B.a as id,B.a*100 as c
from Inventory B
where condition1 and condition2
) as C
on C.id
on A.a
在上述用例中,如果没有左连接,我如何实现这一点?
2条答案
按热度按时间rta7y2nd1#
假设
on C.id on A.a
是一个拼写错误,而且是真的on C.id = A.a
:等于
u1ehiz5o2#
cosmos db目前只支持自连接。您可以参考此文档。左连接在cosmos db开发团队计划中,暂定于2020年下半年开始。您可以在此处跟踪此功能。