Azure 流分析的嵌套条件

Posted

技术标签:

【中文标题】Azure 流分析的嵌套条件【英文标题】:Nested condition for Azure Stream analytics 【发布时间】:2018-11-02 08:05:37 【问题描述】:

我有两个问题:

    Azure 流分析是否支持使用 CASE 语句的嵌套条件? 我看到这里提到的 CASE 表达式有两种格式-https://docs.microsoft.com/en-us/stream-analytics-query/case-azure-stream-analytics。我找到了搜索案例here 的示例。任何人都可以举个简单 CASE 表达式的例子吗?

【问题讨论】:

【参考方案1】:

样本数据:

[
"id": "0001",
"type": "donut",
"name": "Cake"
,

"id": "0002",
"type": "donut2",
"name": "Cake2"
]

Azure 流分析是否支持使用 CASE 的嵌套条件 声明?

根据我的测试,它支持嵌套的 case 条件。

SQL:

select jsoninput.id as id, jsoninput.type as type ,
case when 
    ((case when  jsoninput.id = '0001' then '0' else '1' end) = '0' ) then '0'
else  '1' end as res
from jsoninput

输出:

谁能举个简单 CASE 表达式的例子?

SQL:

select jsoninput.id as id, jsoninput.type as type ,
case jsoninput.id when '0001' then 'true' else 'false' end as res 
from jsoninput

输出:

【讨论】:

以上是关于Azure 流分析的嵌套条件的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Azure 流分析中展平嵌套的 json 数据

使用流分析作业查询从 EventHub 中过滤 Azure 事件

Azure 流分析获取前一个输出行以加入输入

流分析 - 查询嵌套数组返回 0 个结果

利用条件运算符的嵌套来完成学生成绩的表示

使用tcpdump和wireshark分析tcp流