You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
如果对下面的语句进行格式化,会发现 case 后面出问题
select 1,2,3,
case -- case 语句注释
when name='a' then 123 -- c1
when name = 'b' then 132 -- c2
when name = 'c' then 25 --c3
end as alias
from t1;
如果对下面的语句进行格式化,会发现 case 后面出问题
select 1,2,3,
case -- case 语句注释
when name='a' then 123 -- c1
when name = 'b' then 132 -- c2
when name = 'c' then 25 --c3
end as alias
from t1;