我有两个问题:
- azure Stream 分析是否支持使用 CASE 语句的嵌套条件?
- 我看到这里提到了 2 种格式的 CASE 表达式 - https://docs.microsoft.com/en-us/stream-analytics-query/case-azure-stream-analytics。我在这里找到了搜索案例的示例。任何人都可以举个简单案例表达式的例子吗?
我有两个问题:
样本数据 :
[{
"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
输出: