Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如标题所说,在 Azure 流分析作业中可以有多个查询吗?如果是这样,应该如何构建?
是的,您可以在流分析作业中进行多个查询。你会做类似下面的事情
select * into type1Output from inputSource where type = 1 select * into type2Output from inputSource where type = 2
该作业定义了两个输出,称为 type1Output 和 type2Output。每个查询写入不同的输出。