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 @1 int,@2 int
select @1,@2 --both NULL
if @1 =@2 --not equal, since NULL is unknown nothing can be equal to NULL
print 'yes'
else
print 'no'