EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

PostgreSQL EXTRACT()

By Sohel SayyadSohel Sayyad

Home » Data Science » Data Science Tutorials » PostgreSQL Tutorial » PostgreSQL EXTRACT()

PostgreSQL EXTRACT()

Definition of PostgreSQL EXTRACT()

PostgreSQL extract function() is used to fetch the subfields from a date/time value field, like as in an hour or year, or day. The input field should be a date-time field. The input field is a string of date-time value or interval or timestamp from which we extract the fields like the second, minute, hour, date, etc. There are various units supported by PostgreSQL in which we can extract the input date-time source string. As a return result, the PostgreSQL EXTRACT() function gives a double-precision value.

Syntax:

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Consider the following syntax of the PostgreSQL EXTRACT() function:

extract(unit from timestamp)
or
extract(unit from interval)

Explanation:

  • Timestamp or Interval: It is the input source string from which the unit is gets extracted.
  • Unit: This defined the type of the unit to extract like a minute, hour, day, month, and so on.

Consider the following table to understand the possible values of the unit:

UNIT TIMESTAMP INTERVAL
CENTURY A century The century number
DAY A day of the given month

Numbered like (1-31)

The day number
DECADE a year which is divided by ten Similar to TIMESTAMP
DOW Weekday (0) Sunday to (6) Saturday NIL
DOY A day of the given year numbered like

(1 – 366)

NIL
EPOCH A second number from ‘1970-01-01 00:00:00’ UTC The second number
HOUR The hour numbered like (0-23) The hour number
ISODOW A day of the given week which is defined on ISO 8601 Monday to Sunday NIL
ISOYEAR ISO 8601 week number of year NIL
MICROSECONDS seconds with fractional parts, which is multiplied with ‘1000000.’ Similar to TIMESTAMP
MILLENNIUM The millennium The millennium number
MILLISECONDS seconds with fractional parts, which is multiplied with ‘1000.’ Similar to TIMESTAMP
MINUTE A minute numbered like (0-59) The minute number
MONTH A Month numbered like 1-12 The month number which is modulo by (0-11)
QUARTER the quarter of the given year The quarter number
SECOND A second The second number
TIMEZONE It is in seconds NIL
TIMEZONE_HOUR The time zone’s hour field. NIL
TIMEZONE_MINUTE The time zone’s minute field. NIL
WEEK The week of the giver year as per the ISO 8601 NIL
YEAR A year

 

 

Similar to TIMESTAMP

 

 

How does PostgreSQL EXTRACT() Function Work?

Consider the following pictorial representation for understanding the working of the extract function; as per the unit specified in the EXTRACT syntax, the PostgreSQL EXTRACT function extracts the unit from the input and returns that value.

PostgreSQL EXTRACT()-1.1

Implementing EXTRACT() Function in PostgreSQL

Let’s consider the following examples for understanding the PostgreSQL extract function examples.

  • Consider the following examples to extract date values:

SELECT extract(day from date '2020-04-03');

PostgreSQL EXTRACT()-1.2

SELECT extract(month from date '2020-04-03') AS MONTH;

PostgreSQL EXTRACT()-1.3

SELECT extract(year from date '2020-04-03') AS year;

PostgreSQL EXTRACT()-1.4

  • Consider the following examples to extract timestamp values.

SELECT extract(day from timestamp '2020-04-03 09:57:10');

 PostgreSQL EXTRACT()-1.5

SELECT extract(month from timestamp '2020-04-03 09:57:10');

PostgreSQL EXTRACT()-1.6

SELECT extract(minute from timestamp '2020-04-03 09:57:10');

PostgreSQL EXTRACT()-1.7

SELECT extract(second from timestamp '2020-04-03 09:57:10');

PostgreSQL EXTRACT()-1.8

SELECT extract(hour from timestamp '2020-04-03 09:57:10');

Output-1.9

  • Consider the following examples to extract time values.

SELECT extract(minute from time '09:57:10');

Output-1.10

SELECT extract(second from time '09:57:10');

Output-1.11

SELECT extract(milliseconds from time '09:57:10.5');

Output-1.12

  • Consider the following examples to extract interval values.

SELECT extract(day from interval '4 days 4 hours');

Output-1.13

SELECT extract(hour from interval '4 days 4 hours');

Output-1.14

Advantages of using EXTRACT() Function in PostgreSQL

  • We can extract the units like a day, month, hour, minute and many more from the source string by using the EXTRACT function.
  • The PostgreSQL EXTRACT() function gives a double-precision value.
  • The unit defined to fetch the result is human readable.
  • We can extract the input source of type timestamp, interval, and date-time, etc.

Conclusion

We hope from the above article you have understood how to use the PostgreSQL EXTRACT() function and how the PostgreSQL EXTRACT() function works. Also, we have added several examples of the PostgreSQL EXTRACT() function to understand it in detail.

Popular Course in this category
Sale
PostgreSQL Course (2 Courses, 1 Project)2 Online Courses | 1 Hands-on Project | 7+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (6,206 ratings)
Course Price

View Course

Related Courses

Recommended Articles

This is a guide to PostgreSQL EXTRACT(). Here we also discuss the Introduction and how does PostgreSQL extract() function works? Along with different examples and its code implementation. You may also have a look at the following articles to learn more –

  1. PostgreSQL Administration
  2. PostgreSQL LAG()
  3. PostgreSQL LIMIT
  4. PostgreSQL Alias
  5. PostgreSQL SERIAL | Examples

PostgreSQL Course (2 Courses, 1 Project)

2 Online Courses

1 Hands-on Project

7+ Hours

Verifiable Certificate of Completion

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
PostgreSQL Tutorial
  • Basic
    • What is PostgreSQL
    • PostgreSQL Features
    • How to Install PostgreSQL
    • PostgreSQL Versions
    • PostgreSQL Architecture
    • PostgreSQL GUI
    • Postgres Command-Line
    • PostgreSQL Variables
    • PostgreSQL Data Types
    • PostgreSQL NOT NULL
    • PostgreSQL Integer
    • PostgreSQL Boolean
    • PostgreSQL BIGINT
    • PostgreSQL NULLIF
    • PostgreSQL Administration
    • PostgreSQL Commands
    • PostgreSQL Operators
    • PostgreSQL IN Operator
    • Postgres like query
    • PostgreSQL encode
    • PostgreSQL Cheat Sheet
    • PostgreSQL List Databases
    • PostgreSQL Rename Database
  • Control Statement
    • PostgreSQL IF Statement
    • PostgreSQL if else
    • PostgreSQL CASE Statement
    • PostgreSQL LOOP
    • PostgreSQL For Loop
    • PostgreSQL While Loop
  • Joins
    • Joins in PostgreSQL
    • PostgreSQL Inner Join
    • PostgreSQL Outer Join
    • LEFT OUTER JOIN in PostgreSQL
    • PostgreSQL FULL OUTER JOIN
    • PostgreSQL LEFT JOIN
    • PostgreSQL Full Join
    • PostgreSQL Cross Join
    • PostgreSQL NATURAL JOIN
    • PostgreSQL UPDATE JOIN
  • Queries
    • PostgreSQL Queries
    • PostgreSQL INSERT INTO
    • PostgreSQL WHERE Clause
    • PostgreSQL WITH Clause
    • PostgreSQL ORDER BY
    • PostgreSQL ORDER BY Random
    • PostgreSQL ORDER BY DESC
    • PostgreSQL GROUP BY
    • PostgreSQL group_concat
    • PostgreSQL HAVING
    • PostgreSQL Recursive Query
  • Advanced
    • PostgreSQL Schema
    • Postgres List Schemas
    • PostgreSQL Drop Schema
    • PostgreSQL VARCHAR
    • Array in PostgreSQL
    • PostgreSQL DDL
    • PostgreSQL List Users
    • Postgres Default User
    • Postgres add user
    • PostgreSQL User Password
    • PostgreSQL log_statement
    • PostgreSQL repository
    • PostgreSQL shared_buffer
    • PostgreSQL String Functions
    • PostgreSQL Compare Strings
    • PostgreSQL Text Search
    • PostgreSQL TEXT
    • PostgreSQL String Array
    • PostgreSQL where in array
    • PostgreSQL Constraints
    • PostgreSQL UNIQUE Constraint
    • PostgreSQL CHECK Constraint
    • PostgreSQL INTERSECT
    • PostgreSQL Like
    • Cursors in PostgreSQL
    • PostgreSQL UNION ALL
    • Indexes in PostgreSQL
    • PostgreSQL Index Types
    • PostgreSQL REINDEX
    • PostgreSQL UNIQUE Index
    • PostgreSQL Clustered Index
    • PostgreSQL DROP INDEX
    • PostgreSQL DISTINCT
    • PostgreSQL FETCH
    • PostgreSQL RAISE EXCEPTION
    • PostgreSQL Auto Increment
    • Sequence in PostgreSQL
    • Wildcards in PostgreSQL
    • PostgreSQL Subquery
    • PostgreSQL Alias
    • PostgreSQL LIMIT
    • PostgreSQL Limit Offset
    • PostgreSQL LAG()
    • PostgreSQL Table
    • Postgres Show Tables
    • PostgreSQL Describe Table
    • PostgreSQL Lock Table
    • PostgreSQL ALTER TABLE
    • Postgres Rename Table
    • PostgreSQL List Tables
    • PostgreSQL TRUNCATE TABLE
    • PostgreSQL Table Partitioning
    • Postgres DROP Table
    • PostgreSQL Functions
    • PostgreSQL Math Functions
    • PostgreSQL Window Functions
    • Aggregate Functions in PostgreSQL
    • PostgreSQL Primary Key
    • Foreign Key in PostgreSQL
    • PostgreSQL Procedures
    • PostgreSQL Stored Procedures
    • PostgreSQL Views
    • PostgreSQL Materialized Views
    • Postgres Create View
    • PostgreSQL Triggers
    • PostgreSQL DROP TRIGGER
    • PostgreSQL Date Functions
    • PostgreSQL TO_DATE()
    • PostgreSQL datediff
    • PostgreSQL Timestamp
    • PostgreSQL CURRENT_TIMESTAMP()
    • PostgreSQL Notify
    • PostgreSQL LENGTH()
    • PostgreSQL blob
    • PostgreSQL Median
    • PostgreSQL kill query
    • PostgreSQL Formatter
    • PostgreSQL RANK()
    • PostgreSQL Select
    • PostgreSQL Average
    • PostgreSQL DATE_PART()
    • PostgreSQL EXECUTE
    • PostgreSQL COALESCE
    • PostgreSQL EXTRACT()
    • PostgreSQL Sort
    • PostgreSQL TO_CHAR
    • PostgreSQL Interval
    • PostgreSQL Number Types
    • PostgreSQL ROW_NUMBER
    • Alter Column in PostgreSQL
    • PostgreSQL Identity Column
    • PostgreSQL SPLIT_PART()
    • PostgreSQL CONCAT()
    • PostgreSQL replace
    • PostgreSQL TRIM()
    • PostgreSQL MAX
    • PostgreSQL DELETE
    • PostgreSQL Float
    • PostgreSQL OID
    • PostgreSQL log
    • PostgreSQL REGEXP_MATCHES()
    • PostgreSQL MD5 
    • PostgreSQL NOW()
    • PostgreSQL RANDOM
    • PostgreSQL round
    • PostgreSQL Trunc()
    • PostgreSQL TIME
    • PostgreSQL IS NULL
    • PostgreSQL CURRENT_TIME
    • PostgreSQL MOD()
    • Postgresql Count
    • PostgreSQL Datetime
    • PostgreSQL MIN()
    • PostgreSQL age()
    • PostgreSQL enum
    • PostgreSQL OR
    • PostgreSQL Wal
    • PostgreSQL NOT IN
    • PostgreSQL SET
    • PostgreSQL Current Date
    • PostgreSQL Compare Date
    • PostgreSQL SERIAL
    • PostgreSQL UUID
    • PostgreSQL Merge
    • PostgreSQL Database
    • PostgreSQL Clone Database
    • PostgreSQL Copy Database
    • PostgreSQL Show Databases
    • PostgreSQL Restore Database
    • PostgreSQL DROP DATABASE
    • PostgreSQL ALTER DATABASE
    • Postgres DROP Database
    • Postgres Dump Database
    • PostgreSQL OFFSET
    • PostgreSQL GRANT
    • PostgreSQL COMMIT
    • PostgreSQL ROLLUP
    • PostgreSQL JSON
    • EXPLAIN ANALYZE in PostgreSQL
    • PostgreSQL Temporary Table
    • PostgreSQL Show Tables
    • PostgreSQL cluster
    • PostgreSQL Replication
    • PostgreSQL Logical Replication
    • PostgreSQL flush privileges
    • PostgreSQL Tablespaces
    • CAST in PostgreSQL
    • PostgreSQL CTE
    • hstore in PostgreSQL
    • PostgreSQL Encryption
    • PostgreSQL DECODE()
    • PostgreSQL Vacuum
    • PostgreSQL EXCLUDE
    • Postgres Change Password
    • Postgres Delete Cascade
    • PostgreSQL EXCEPT
    • PostgreSQL Roles
    • PostgreSQL Link
    • PostgreSQL Partition
    • PostgreSQL column does not exist
    • PostgreSQL Log Queries
    • PostgreSQL escape single quote
    • PostgreSQL Query Optimization
    • PostgreSQL Character Varying
    • PostgreSQL Transaction
    • PostgreSQL Extensions
    • PostgreSQL Import CSV
    • PostgreSQL Client
    • PostgreSQL caching
    • PostgreSQL Incremental Backup
    • PostgreSQL JSON vs JSONNB
    • PostgreSQL JDBC Driver
    • PostgreSQL Interview Questions
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2022 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

By signing up, you agree to our Terms of Use and Privacy Policy.

Special Offer - PostgreSQL Course (2 Courses, 1 Project) Learn More