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 Streaming Analytics ジョブで複数のクエリを使用できますか? もしそうなら、それはどのように構成されるべきですか?
はい、ストリーム分析ジョブで複数のクエリを使用できます。あなたは以下のようなことをします
select * into type1Output from inputSource where type = 1 select * into type2Output from inputSource where type = 2
このジョブには、type1Output と type2Output という 2 つの出力が定義されています。各クエリは、異なる出力に書き込みます。