Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select id, max( val ) as MaxVal
from (
select id, col,
case col
when 1 then [Column1]
when 2 then [Column2]
when 3 then [Column3]
end as val
from [TABLE]
cross join (
select 1 as col union all
select 2 union all
select 3
) As s
) as a
group by id