Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (20.3k points)

I'm doing a few SQL select queries and would like to convert my UTC datetime column into local time to be displayed as local time in my query results. Note, I am NOT looking to do this conversion via code but rather when I am doing manual and random SQL queries against my databases.

1 Answer

0 votes
by (40.7k points)

For SQL Server 2008 or greater you can use below code:

SELECT CONVERT(datetime, 

               SWITCHOFFSET(CONVERT(datetimeoffset, 

                                    MyTable.UtcColumn), 

                            DATENAME(TzOffset, SYSDATETIMEOFFSET()))) 

       AS ColumnInLocalTime

FROM MyTable

Or else you can use less verbose like this:

SELECT DATEADD(mi, DATEDIFF(mi, GETUTCDATE(), GETDATE()), MyTable.UtcColumn) 

       AS ColumnInLocalTime

FROM MyTable

Note: In any case, you should not use - to subtract dates, because the operation is not atomic, sometimes you can get indeterminate results because of the race conditions between the system datetime and 

the local datetime which will be checked at different times (i.e., non-atomically).

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...