Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 930077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:16:40+00:00 2026-05-15T20:16:40+00:00

I have a table column that uses an enum type. I wish to update

  • 0

I have a table column that uses an enum type. I wish to update that enum type to have an additional possible value. I don’t want to delete any existing values, just add the new value. What is the simplest way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T20:16:41+00:00Added an answer on May 15, 2026 at 8:16 pm

    NOTE if you’re using PostgreSQL 9.1 or later, and you are ok with making changes outside of a transaction, see this answer for a simpler approach.


    I had the same problem few days ago and found this post. So my answer can be helpful for someone who is looking for solution 🙂

    If you have only one or two columns which use the enum type you want to change, you can try this. Also you can change the order of values in the new type.

    -- 1. rename the enum type you want to change
    alter type some_enum_type rename to _some_enum_type;
    -- 2. create new type
    create type some_enum_type as enum ('old', 'values', 'and', 'new', 'ones');
    -- 3. rename column(s) which uses our enum type
    alter table some_table rename column some_column to _some_column;
    -- 4. add new column of new type
    alter table some_table add some_column some_enum_type not null default 'new';
    -- 5. copy values to the new column
    update some_table set some_column = _some_column::text::some_enum_type;
    -- 6. remove old column and type
    alter table some_table drop column _some_column;
    drop type _some_enum_type;
    

    3-6 should be repeated if there is more than 1 column.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a photos table in the database that uses a status column to
I want to have a column on a table that is automatically updated when
I have a table that uses a ParentID column; the standard way of representing
I have a database table that uses Sql Server 2005's uniqueidentifier column. I know
I have a table with 1 column that stores the ID auto_increment and with
I have the following requirement. I have a table with a column that contains
I have table with column Percentage varchar(10) Data in that table is Pecentage 2/10
I have a table that has a column that has the cost of a
I have mysql table that has a column that stores xml as a string.
I have a table with an identity column that have incremented by 1 for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.