Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Azure
Microsoft Azure
NO Image:
23
Azure SQL uses Greenwich Mean Time
posted on May 23, 2024 13:59
// AZURE SQL USES GREENWICH MEAN TIME . . . Azure SQL Database does not support time zone settings; it always follows UTC. Use AT TIME ZONE in SQ...
[Read the rest of this article...]
UTC
Posted in:
Azure
,
Azure SQL Database
Actions:
E-mail
|
Permalink
|
Comments (0)
03
Getting Eastern Standard Time from Azure SQL
posted on November 03, 2020 11:20
Declare @todays_date Date set @todays_date = CAST(SYSDATETIMEOFFSET() AT TIME ZONE 'Eastern Standard Time' AS date) For example, if you want ...
[Read the rest of this article...]
Azure SQL GetDate()
Posted in:
Azure
,
Microsoft SQL Server
,
Azure SQL Database
Actions:
E-mail
|
Permalink
|
Comments (0)