To extract Microseconds from datetime i.e. timestamp in PostgreSQL, you can use the DATE_PART() function with the ‘microseconds’ unit.
Syntax for DATE_PART() Function in PostgreSQL:
DATE_PART(unit, source)
unit: Specifies the part of the date or timestamp to extract (e.g., ‘year’, ‘month’, ‘day’, ‘hour’, ‘minute’, ‘second’, etc.).
source: The date or timestamp from which to extract the specified part.
In Our case. The values of the unit must be “microseconds”.
Extract Microseconds from datetime(timestamp) in postgresql Simple Example:
In order to Extract microseconds from datetime (timestamp) in postgresql we will be using DATE_PART() function.
In the below Example we will be passing microseconds as “unit” argument and datetime as “source” argument in order to extract microseconds from Date or datetime
SELECT DATE_PART('microseconds', '2024-02-24 15:30:45.123456'::timestamp) AS microseconds_part;
Output:
Extract Microseconds from Current date in postgresql :
This query uses the CURRENT_TIMESTAMP function to get the current datetime and then extracts the microeconds using DATE_PART()
SELECT CURRENT_TIMESTAMP AS current_datetime, DATE_PART('microseconds', CURRENT_TIMESTAMP) AS microseconds;
Output:
Extract microseconds from Date in postgresql table:
We will be using Below Student_detail table for our example to depict on how to extract microseconds from date in postgresql
Student_detail:
In the above table we will be using DATE_PART() Function, which will take “microseconds” and column named “birthdaytime” as argument. Which will extract microseconds from “birthdaytime” column and store in the new column of postgresql table as shown below
select *, DATE_PART('microseconds', birthdaytime::timestamp) AS microseconds from Student_detail
so the resultant table will have microseconds column
Extract Microseconds from Date in PostgreSQL table using Extract():
We will be using Below Student_detail table for our example to depict on how to extract Microseconds from date in postgresql
Student_detail:
In the above table we will be using EXTRACT() Function, which will take “Microseconds” and column named “birthdaytime” as argument. Which will extract Microseconds from “birthdaytime” column and store in the new column of postgresql table as shown below
Select *, extract(MICROSECONDS FROM birthdaytime) as microseconds from student_detail
So the resultant table will have microseconds column