aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/sql/case.sql
blob: eee85a3be3722613d75fd9f820e690c0db69b3ec (plain) (blame)
1
2
3
4
5
6
7
8
select
    case
        when a = 1 then '1'
        when a = 2 then '2'
        when a = 3 then '3'
        else '0'
    end as stmt1
from tab;