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 @test as table (nulcol datetime null);
insert into @test (nulcol) values ('20150101'),('20160101'),(null)
Select * from @test where Year(nulcol)<year(getdate())
Select * from @test where Year(nulcol)>2015