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 @which_year int --numeric(4,0)
if(@which_year%4) = 0
--is a lear year
else
--not a leap year
select isdate (convert(varchar(4), @year) + '0229')
if @year % 4 = 0 and (@year % 100 <> 0 or @year % 400 = 0)
-- is a leap year
else
--not a leap year
select 1 - (sign(@year % 4) | (~sign(@year % 100) & sign(@year % 400)))