EDUCBA

EDUCBA

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

PostgreSQL ALTER TABLE

By Priya PedamkarPriya Pedamkar

Home » Data Science » Data Science Tutorials » PostgreSQL Tutorial » PostgreSQL ALTER TABLE

PostgreSQL ALTER TABLE

Introduction to PostgreSQL ALTER TABLE

PostgreSQL alter table statement is used to change the table structure, we can change the table name, column name, add or drop the table column, add or drop the constraint from the table, set new schema to the table. To use alter table statement in PostgreSQL we need to have the owner of table privileges or superuser privileges to execute the alter table statement. Alter table statement is used to delete, add, and modify the structure of the existing table in PostgreSQL.

Syntax of PostgreSQL ALTER TABLE

Below is the syntax :

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

1. Alter table to change the name of the table

Alter table name_of_table RENAME TO new_name_of_table;

2. Alter table to add a column

Alter table name_of_table ADD name_of_column data_type_of_column;

3. Alter table to drop column

Alter table name_of_table DROP name_of_column;

4. Alter table to change the data type of column

Alter table name_of_tableALTER COLUMN name_of_column type data_type_of_column;

5. Alter table to set new schema

Alter table name_of_table SET SCHEMA new_schema_name;

6. Alter table to rename the column 

Alter table name_of_table rename column old_column_name to new_column_name;

7. Alter column to add a not-null constraint 

Alter table name_of_table modify name_of_column data_type not null;

8. Alter table to drop constraint 

Alter table name_of_table drop constraint name_of_constraint;

9. Alter table to change the tablespace 

Alter table name_of_table set tablespace name_of_tablespace;

Parameters

Below is the parameter description syntax of the alter table statement in PostgreSQL.

  1. Alter table –This statement is used to change the table structure in PostgreSQL.
  2. Name of the table –This is defined as the table name which was we have used to change the structure of the table.
  3. Rename to – This keyword is used to change the table name, we have change table name using rename keyword.
  4. The new name of the table –This is the newly created name of the table which was we have modified with alter table statement.
  5. Add column –We can add a column of the table by using add column keyword with alter table statement.
  6. Column name –This is defined as the name of the column which was we have changed with alter table statement.
  7. The data type of column –This is defined as the data type which was we have allocated to the column.
  8. Modify –This keyword is used to modify the column to add not null constraint in PostgreSQL.
  9. Set tablespace –This is used to set the new tablespace to the table by using the alter table statement.
  10. Set schema – This is used to set the new schema to the table by using the alter table statement.
  11. Drop constraint –This is used to drop constraint from the table using the alter table statement.

How to ALTER TABLE statement work in PostgreSQL?

Below is the working of the alter table statement in PostgreSQL. Alter table in PostgreSQL is used to change the structure of the table.

The below example shows that we need to have privileges of the owner of the table or superuser privileges.

psql -U db_test -d testing
ALTER TABLE student DROP stud_id;
psql -U Postgres
\c testing
ALTER TABLE student DROP stud_id;
\d+ student;

PostgreSQL ALTER TABLE output 1

In the above first example, we have used user as db_test, this user doesn’t have privileges of table owner or superuser so, it will issue error while executing the alter table statement.

In the second example, we have altered the table using the username as Postgres, after using this user we have to drop the column name of stud_id from the student table.

Alter table is used to do the following action on the table are as follows.

  1. Change the name of the table.
  2. Add column.
  3. Drop column.
  4. Change the schema of the table.
  5. Change the tablespace of the table.
  6. Add a constraint to the table.
  7. Drop constraint from the table.
  8. Rename column.
  9. Add not null constraint.

Examples

Below is the example of the alter table statement in PostgreSQL are as follows. We have using stud1 and stud2 tables to describe examples of the alter table statement.

Below is the table description of stud1 and stud2 table.

\d+ stud1;
\d+ stud2;

PostgreSQL ALTER TABLE output 2

Example #1 – Alter table to change the name of the table

Below example shows that alter table to change the name of the table. We have to change the stud1 table name to student1.

Alter table stud1 RENAME TO student1;
\d+ student1;

PostgreSQL ALTER TABLE output 3

Example #2 – Alter table to add a new column

Below example shows that alter table to add the new column. We have added the test_stud column to the student1 table.

Alter table student1 ADD test_stud varchar;
\d+ student1;

PostgreSQL ALTER TABLE output 4

Example #3 – Alter table to drop column

Below example shows that alter table to drop the column. We have dropped the test_stud column from the student1 table.

Alter table student1 DROP COLUMN test_stud;
\d+ student1;

PostgreSQL ALTER TABLE output 5

Example #4 – Alter table to change the schema of the table

The below example shows that change the schema of the stud2 table. We have changed the schema public to my_schema.

Alter table stud2 SET SCHEMA my_schema;
\d+ my_schema.stud2;

output 6

Example #5 – Alter table to change tablespace of a table

The below example shows that change the tablespace of the stud2 table. We have changed tablespace from default to my_test.

Alter table my_schema.stud2 set tablespace my_test;
\d+ my_schema.stud2;

output 7

Example #6 – Alter table to rename the column

Below example shows that alter table to rename the column. We have to change the id column to the id1 column.

Alter table my_schema.stud2 rename column id to id1;
\d+ my_schema.stud2;

output 8

Recommended Articles

This is a guide to PostgreSQL ALTER TABLE. Here we discuss how to ALTER TABLE in PostgreSQL along with query examples. You may also have a look at the following articles to learn more –

  1. PostgreSQL CTE
  2. PostgreSQL Inner Join
  3. PostgreSQL log
  4. Array in PostgreSQL

All in One Data Science Bundle (360+ Courses, 50+ projects)

360+ Online Courses

50+ projects

1500+ Hours

Verifiable Certificates

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 - All in One Data Science Bundle (360+ Courses, 50+ projects) Learn More