Posts by julianorinaldi • 31 points
1 post
-
3
votes2
answers15372
viewsA: Conversion of an nvarchar data type into a datetime data type resulted in a value outside the range
I had a similar problem, but with SELECT CAST(N'2016-02-23 06:20:24.000' AS DateTime) didn’t work. I also tested SELECT CONVERT(datetime, '2016-02-23 06:20:24.000') and it didn’t work. But, passing…