将日期时间转换为 Unix 时间戳

Convert Datetime to Unix timestamp

在 Microsoft SQL Server 2012 或更高版本中,是否可以在单个 select 语句中将日期时间值转换为 Unix 时间戳?如果可以,怎么办?

正如 Peter Halasz 在 T-SQL DateTime to Unix Timestamp 中提到的那样:

Converting a datetime to unix timestamp is easy, but involves error prone typing the following:

@timestamp=DATEDIFF(second,{d '1970-01-01'},@datetime)

Where @datetime is the datetime value you want to convert. The {d ‘yyyy-mm-dd’} notation is an ODBC escape sequence.

The function:

CREATE FUNCTION UNIX_TIMESTAMP (
@ctimestamp datetime
)
RETURNS integer
AS
BEGIN
  /* Function body */
  declare @return integer
   
  SELECT @return = DATEDIFF(SECOND,{d '1970-01-01'}, @ctimestamp)
   
  return @return
END

现在就试试看@O A:

SELECT UNIX_TIMESTAMP(GETDATE());

也许这个答案会对某人有所帮助...如果您在尝试使用 datediff 函数将日期时间转换为秒数时遇到问题(mssql 消息:datediff 函数导致溢出。分隔两个 date/time 实例的日期部分的数量太大。尝试将日期部分与不太精确的日期部分一起使用。)然后使用:

select cast(datediff(d,'1970-01-01',@d1) as bigint)*86400+datediff(s,dateadd(day, datediff(day, 0, @d1), 0),@d1)

如果你有 ms sql 服务器 2016+ 使用 DATEDIFF_BIG 功能