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 @a table (dte smalldatetime)
insert into @a
select '2007-01-01' union
select '1900-01-01' union
select '2008-01-01'
select dte, datediff(dd, dte, getdate()) diff from @a
where getdate()<dte