EDUCBA

EDUCBA

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

PostgreSQL SPLIT_PART()

By Priya PedamkarPriya Pedamkar

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

PostgreSQL SPLIT_PART()

Definition of PostgreSQL SPLIT_PART()

PostgreSQL split_part function is used to split a string into nth substring by using a specified delimiter; the string’s splitting is based on a specified delimiter that we have used. Splitting of the string using the split_part function is starting from left to right; it will always splitting the string from left to right.PostgreSQL split_part function requires three arguments as string, delimiter and position. The string argument states that string which has used to split, a delimiter is used to split the string into the nth part. The position states which position string we want to return.

Syntax:

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Below is the syntax of the split_part function in PostgreSQL.

Split_part (String, delimiter, Position)

Select split_part (String (In this position column name as we have defined a string.), delimiter, Position), split_part (String (In this position column name as we have defined a string.), delimiter, Position), Column_nameN from table_name;

Parameter:

Below is the parameter description of the above syntax.

  • String: String is states that which string we have used to split using a split_part function in PostgreSQL. We can use any of the string to split it; we can also use a column name as a substring to split the data from the column.
  • Split_part (): PostgreSQL split_part function is used to split string into specified delimiter and return into result as an nth substring, the splitting of string is based on a specified delimiter which we have used.
  • Delimiter: Delimiter is used to split the string into sub-parts by using a split_part function in PostgreSQL. We can split the string into a number of parts using a delimiter.
  • Position: Position in split part function states which position string we want to return using split_part function in PostgreSQL. The position will start from 1, and it should not be negative; it is always a positive integer.
  • Select: Select is used to select a column of the table using the split_part function in PostgreSQL. We can select a column using the split_part function and split column string.
  • Column 1 to Column N: Column name used to get the information from the table. We can split the column data rows using the split_part function in PostgreSQL.
  • Table name: Table name is used to retrieve data from the specified column using the split_part function in PostgreSQL.

How PostgreSQL SPLIT_PART() Function Works?

Below is the working of the PostgreSQL split_part function.

  • Split part function is very important and useful in PostgreSQL to split a string into nth parts.
  • We need to define a position value as a positive number; a negative value is not allowed in the position argument.
  • We need to define a greater than zero value at the time using the split_part function in PostgreSQL.
  • In the below first example, we have used a position of 1; after using position 1, it will display the string’s value is X.
  • Using value as 0 and -1 will display the error as “ERROR: field position must be greater than zero”.

SELECT SPLIT_PART('X,Y,Z', ',', 1);

Output-1.1

SELECT SPLIT_PART('X,Y,Z', ',', -1);
SELECT SPLIT_PART('X,Y,Z', ',', 0);

 Output-1.2

  • It is used to split string into specified delimiter and return into result as nth substring, the splitting of string is based on a specified delimiter which we have used.
  • The string argument states which string we have used to split using a split_part function in PostgreSQL. We can use any of the string to split it; we can also use a column name as a substring to split the data from the column.
  • Delimiter argument is used to split the string into sub-parts by using a split_part function in PostgreSQL. We can split the string into a number of parts using delimiter.
  • The position argument is split part function states which position string we want to return using split_part function. The position will start from 1 and it should not be negative; it is always positive integer.
  • Splitting of the string using the split_part function is starting from left to right; it will always splitting the string from left to right.
  • It requires three arguments as string, delimiter and position.

Example to Implement SPLIT_PART () Function in PostgreSQL

  • Below is the example of split_part function in PostgreSQL is as follows.
  • We have using example of the employee table to describe the example of the split_part function in PostgreSQL. Below is the employee table are as follows.

select * from employee;

Output-2.1

1. In the below example we have split ABBCCD string into three parts using a delimiter. In the first part we have split the string as AB in the second part split as BC, and in the third part we split as CD.

SELECT SPLIT_PART('AB,BC,CD', ',', 1);

Output-3.1

SELECT SPLIT_PART('AB,BC,CD', ',', 2);

PostgreSQL SPLIT_PART()-3.2

SELECT SPLIT_PART('AB,BC,CD', ',', 3);

PostgreSQL SPLIT_PART()-3.3

2. In the below example, we have split the date of joining column as year, month and date wise into three columns.

SELECT emp_id, emp_name, emp_phone, emp_salary, split_part(date_of_joining::TEXT,'-',
1) AS Year, split_part(date_of_joining::TEXT,'-', 2) AS Month, split_part(date_of_joining::TEXT,'-', 3) AS Date FROM employee;

PostgreSQL SPLIT_PART()-4.1

In the above example, we have split the joining column’s date into three substring as date, year and month wise.

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,195 ratings)
Course Price

View Course

Related Courses

3. Below example shows that only display the month and year of employee joining from employee table.

SELECT emp_id, emp_name, emp_phone, emp_salary, split_part(date_of_joining::TEXT,'-',
1) AS Year, split_part(date_of_joining::TEXT,'-', 2) AS Month FROM employee;

PostgreSQL SPLIT_PART()-5.1

Advantages of Using SPLIT_PART() Functions in PostgreSQL

  • The split part function is used to split the string into nth part in PostgreSQL.
  • By using a split_part function we can identify common data from the table column.
  • We can increase the quality of data by using split_part function in PostgreSQL.
  • We can extract multiple substrings from one string in PostgreSQL.
  • Split_part function is essential and useful in PostgreSQL.

Conclusion

It is used to split string by using specified delimiter and return into result as nth substring, the splitting of string is based on a specified delimiter which we have used. Split_part function requires three arguments as string, delimiter and position.

Recommended Articles

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

  1. PostgreSQL Timestamp
  2. PostgreSQL Administration
  3. PostgreSQL LIMIT
  4. PostgreSQL Alias
  5. Guide to PostgreSQL NOW()

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