Azure SQL Database
An Azure relational database service.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using the sql bank in the region, south brazil, but the time is wrong, it is not in accordance with the time in my region.
An Azure relational database service.
As you can read here SQL Azure uses UTC time on all data centers.
You can convert UTC to Brazil time using AT TIME ZONE as explained here. See below example:
/* Now Switch to Brasil DateTime: */
SELECT @BrasilDateTime = SWITCHOFFSET(@UTCDate, DATENAME(TZ, @UTCDate
AT TIME ZONE ‘E. South America Standard Time’))