Convert UTC Milliseconds to DATETIME in SQL server(在 SQL Server 中将 UTC 毫秒转换为 DATETIME)
问题描述
我想在 SQL Server 中将 UTC 毫秒转换为 DateTime.
I want to convert UTC milliseconds to DateTime in SQL server.
这可以通过以下代码在 C# 中轻松完成:
This can easily be done in C# by following code:
DateTime startDate = new DateTime(1970, 1, 1).AddMilliseconds(1348203320000);
我需要在 SQL 服务器中执行此操作.我在这里找到了一些脚本,但是这是从 1900-01-01 开始的初始滴答声.
I need to do this in SQL server. I found some script here, but this was taking initial ticks from 1900-01-01.
我已经使用了 DATEADD
函数,如下所示,但这是通过支持毫秒作为差异给出了算术溢出异常:
I have used the DATEADD
function as below, but this was giving an arithmetic overflow exception by supping milliseconds as difference:
SELECT DATEADD(MILLISECOND,1348203320000,'1970-1-1')
如何正确进行转换?
推荐答案
DECLARE @UTC BIGINT
SET @UTC = 1348203320997
SELECT DATEADD(MILLISECOND, @UTC % 1000, DATEADD(SECOND, @UTC / 1000, '19700101'))
这篇关于在 SQL Server 中将 UTC 毫秒转换为 DATETIME的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 SQL Server 中将 UTC 毫秒转换为 DATETIME
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01