Overview
The timestamp data type stores time and date values without a time zone. It represents a fixed time, independent of any time zone or applied globally.Format
YYYY: Four-digit yearMM: One / two-digit monthDD: One / two-digit dayHH: One / two-digit hour (valid values from 00 to 23)MM: One / two-digit minutes (valid values from 00 to 59)SS: One / two-digit seconds (valid values from 00 to 59)[.SSSSSS]: Up to six fractional digits (microsecond precision)
Fractional digits are the digits after the decimal point ( . )
Examples
Case #1: Create a Table
Here, we will create a visitor table to store visitor data in an office building. It consists of the visitor’s name, the purpose of the visit, company, time, and date, which uses the Timestamp data type.Case #2: Display the Table
Run theSELECT statement to get all records of the visitors table:
Case #3: Look for a Specific Timestamp
In the below example, the following statement is used to get records with a specified timestamp:Case #4: Insert a Value That Exceeds the Standard Format
The time in timestamp has a standard format, i.e., for minutes only valid for values from 00 to 59. The example below will insert a new record into the visitors table with a value of60, which exceeds the standard seconds format.
select statement below:
00 as 60, which adds 1 minute to the minutes’ value.
AT TIME ZONE Operator
TheAT TIME ZONE operator enables us to convert the input timestamp to the target time zone specified in the query. Additionally, the timestamp you inputted will always be presented in the user’s local timezone (currently set as UTC).
Syntax
To use theAT TIME ZONE operator, you can follow this syntax:
input_timestamp: This represents the date and time value you want to convert. The user’s time zone is fixed to UTC.TIME_ZONE: The target time zone to which the timestamp will be converted.
Example 1
Suppose we have a timestamp, and we want to convert it into the MST time zone:Example 2
Let’s consider from the visitors table, we wish to retrieve a list of visit dates in the MST time zone. We can achieve this using the following query:visitDate displays the timestamps without a time zone, and visitDateMST stores the timestamps converted to the MST time zone.