About 2,670,000 results
Open links in new tab
  1. How to Convert a Unix Timestamp to a Date/Time in SQL

    May 30, 2022 · Here are examples of converting a Unix timestamp to a date/time value in some of the major RDBMSs. The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC). SQL Server. In SQL Server we can use the DATEADD ...

  2. How can I convert bigint (UNIX timestamp) to datetime in SQL

    IF OBJECT_ID('dbo.fn_ConvertUnixToDateTime') IS NULL EXEC ('CREATE function dbo.fn_ConvertUnixToDateTime() returns int AS begin RETURN 0 end;') GO go alter function dbo.fn_ConvertUnixToDateTime (@unixTimestamp BIGINT) RETURNS DATETIME AS /* Converts unix timestamp to utc datetime.

  3. Convert UNIX Timestamps to DATE/TIMEs in SQL Server - Part#1

    Mar 10, 2011 · It's super easy to convert an "Old" INTeger based UNIX Timestamp back to a Date/Time. Just add the value (as seconds) of the "Old" type of UNIX Timestamp to the Epoch date using DATEADD....

  4. How to convert the UNIX TIME into SQL datetime format

    Feb 5, 2014 · In Mysql you can use from_unixtime() function to convert unix timestamp to Date: select COUNT(DISTINCT devices) AS "Devices" from measure_tab where measure_tab.time >= from_unixtime(1375243200) and measure_tab.time < from_unixtime(1375315200);

  5. SQL SERVER – Converting Unix TimeStamp to DateTime

    Oct 20, 2021 · There is a very easy method to convert Unix TimeStamp to DateTime. Let us learn that in today’s blog post. Here is a very simple example of it. Unix TimeStamp DECLARE @UnixDate BIGINT = 1392349571299 SELECT CAST(DATEADD(ms, CAST(RIGHT(@UnixDate,3) AS SMALLINT), DATEADD(s, @UnixDate / 1000, '1970-01-01')) AS DATETIME2(3))

  6. SQL Timestamp to Date Conversion: Practical Guide

    Oct 2, 2024 · Converting a timestamp to a date essentially means extracting just the date part, discarding the time information. Let’s start with the most straightforward method using the DATE() function, which is widely supported across different SQL databases.

  7. Convert Unix Timestamp in SQL Server (T-SQL) - dbblogger

    Jul 5, 2022 · Want to know how to convert a Unix timestamp to a SQL Server timestamp or vice-a-versa? This article shows you how to do it using T-SQL. Read more here.

  8. Easily convert UNIX timestamp to datetime in SQL Server

    Aug 30, 2022 · Easily convert UNIX timestamp to datetime in SQL Server Simple copy-and-paste example: DECLARE @timestamp BIGINT = 1661881445; SELECT DATEADD(S, @timestamp, '1970-01-01')

  9. MySQL :: MySQL 9.3 Reference Manual :: 14.7 Date and Time

    Here is an example that uses date functions. The following query selects all rows with a date_col value from within the last 30 days: . mysql> SELECT something FROM tbl_name-> WHERE DATE_SUB(CURDATE(),INTERVAL 30 DAY) <= date_col;. The query also selects rows with dates that lie in the future.

  10. Convert unix timestamp to date in Microsoft SQL Server

    Apr 17, 2021 · I am trying to convert the 10 digit unix timestamp value to proper yyyy-mm-dd hh:mm:ss format using the code in Microsoft SQL server Update data set Time_final= dateadd(S,[unix_date], '1970-01-01 ...

Refresh