我有2个问题:
答案 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
输出:
任何人都可以举出简单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
输出:
希望它对您有帮助。