1

我有两个问题:

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

1 回答 1

3

样本数据 :

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

azure Stream 分析是否支持使用 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

输出:

在此处输入图像描述

任何人都可以举个简单案例表达式的例子吗?

SQL:

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

输出:

在此处输入图像描述

于 2018-11-02T09:24:13.163 回答