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.
create table #test (id int)
insert into #test
select 1 union all
select 2 union all
select 3 union all
select 4
select convert(numeric(12,4),SUM(id))
from #test