StarRocks 支持在select 中定义变量吗?

StarRocks 支持在select 中定义变量吗?
像这样的语句:
select recordDate,temperature,case when temperature > 15 or @startdate is not null then
ifnull(@startdate,recordDate) end as d,

@startdate:=case when temperature > 15 then ifnull(@startdate,recordDate) end as s

FROM yyh.weather ;

我试了,不支持。但是mysql 是支持的,有没有别的办法实现呢