“SQL Server converte UTC para PST SQL Comando” Respostas de código

Converta UTC em EST SQL

select CONVERT(datetime, SWITCHOFFSET(dateTimeField, DATEPART(TZOFFSET, 
dateTimeField AT TIME ZONE 'Eastern Standard Time')))
Illuzio

SQL Server converte UTC para PST SQL Comando

-- all SQL Server versions
declare @utc_date datetime = getdate()
select @utc_date as utc_time_zone, 
  dateadd(hh, datediff(hh, getutcdate(), getdate()), @utc_date) as local_time_zone

--SQL Server 2016 and later
declare @utc_date datetime = getdate()
select @utc_date as utc_time_zone, 
  getdate() at time zone 'US Eastern Standard Time' as time_zone_est;
LionKing

TSQL UTF para a hora local

select 
 [MyUtcDate] + getdate() - getutcdate()
from [dbo].[mytable]
Annoying Ape

Respostas semelhantes a “SQL Server converte UTC para PST SQL Comando”

Perguntas semelhantes a “SQL Server converte UTC para PST SQL Comando”

Procure respostas de código populares por idioma

Procurar outros idiomas de código