Question: What is returned by NULLIF if the two expressions that it compares are NOT equal?
A
B
C
D
It returns the first expression.
B
It returns the second expression.
C
It returns a null value.
D
It returns an error.
Note: Not available
DECLARE @myTime TIME(4) = '02:02:02.234567 +01:01' SELECT @myTime AS '@myTime'What is the output of the above code?