DateTime2_To_UnixTime
Converts a datetime2 value to a Unix Time (Epoch) value.
- Free Function
- SQL Server Compatibility: 2008, 2012, 2014, 2016, 2017
SELECT SQLHTTP.net.DateTime2_To_UnixTime ( @DateTime2 )
Name | Type | Description |
---|---|---|
@DateTime2 | datetime2 | Value to convert to Unix time ( epoch ) value. |
numeric(20,7)
1 2 3 |
SELECT SQLHTTP.net.DateTime2_To_UnixTime(SYSDATETIME()) |
1 2 3 4 |
--------------------- 1511275921.8719774 |