Why does this..
DECLARE @SkyBlue Bit
SET @SkyBlue = 1
IF @SkyBlue
Select 'the sky is blue!'
ELSE
Select 'the sky is not blue!'
Produce this
"An expression of non-boolean type specified in a context where a condition is expected, near 'Select'."
And is there a Boolean type in SQL2008?