Question:Analyze the following code snippet: DECLARE @myDate DATETIME2 SELECT @myDate = '2009/10/08 12:35:29.2348 +12:15' SELECT @myDate AS '@myDate' What is the output of the above code?
A 2009-10-08 12:35:29
B 2009/10/08 12:35:29.2348000
C 2009-10-08 12:35:29.2348000
D 2009/10/08 12:35:29
+ AnswerC
+ Report