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.
declare @mytable table (
col1 int identity not null,
col2 int
)
insert into @mytable values(5)
insert into @mytable values(10)
insert into @mytable values(15)
insert into @mytable values(25)
insert into @mytable values(NULL)
insert into @mytable values(30)
select * from @mytable
select SUM(col1*col2) as sumproduct from @mytable
select SUM(col1*ISNULL(col2,1)) as sumproduct from @mytable