Azure流分析的嵌套条件

时间:2018-11-02 08:05:37

标签: azure azure-stream-analytics stream-analytics

我有2个问题:

  1. azure Stream Analytics是否使用CASE语句支持嵌套条件?
  2. 我看到这里提到了两种CASE表达式格式-https://docs.microsoft.com/en-us/stream-analytics-query/case-azure-stream-analytics。我找到了搜索的案例here的示例。谁能为简单CASE表达式举例?

1 个答案:

答案 0 :(得分:3)

示例数据:

[{
"id": "0001",
"type": "donut",
"name": "Cake"
},
{
"id": "0002",
"type": "donut2",
"name": "Cake2"
]
  

Azure Stream Analytics是否使用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

输出:

enter image description here

  

任何人都可以举出简单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

输出:

enter image description here

希望它对您有帮助。